类似 window.fetch 的 JSONP 请求库
https://github.com/camsong/fetch-jsonp
npm install fetch-jsonp
根据接口返回callback函数名,指定即可使用
fetchJsonp('/users.jsonp', {
jsonpCallback: 'custom_callback',
})
.then(function(response) {
return response.json()
}).then(function(json) {
console.log('parsed json', json)
}).catch(function(ex) {
console.log('parsing failed', ex)
})