JavaScript异步(SuperAgent , isomorphic-fetch)
Node.js 中的 http 模块大部分都提供大而全的功能,比如 request 、 superagent ,而 node-fetch 可以说是最轻量的之一,没有过度的设计。类似的还有 got 。以下是目前我司PC和H5使用的异步请求方案。
-[X] npm install superagent
import request from 'superagent'
request
.post('/api/pet')
.send({ name: 'Manny', species: 'cat' }) // sends a JSON post body
.set('X-API-Key', 'foobar')
.set('Accept', 'application/json')
.end(function(err, res){
// Calling the end function will send the request
});
-[X] npm install --save isomorphic-fetch es6-promise
require('es6-promise').polyfill();
require('isomorphic-fetch');
fetch('//offline-news-api.herokuapp.com/stories')
.then(function(response) {
if (response.status >= 400) {
throw new Error("Bad response from server");
}
return response.json();
})
.then(function(stories) {
console.log(stories);
});