npm.io
1.0.4 • Published 6 years ago

axios-jsonp

Licence
ISC
Version
1.0.4
Deps
0
Size
5 kB
Vulns
0
Weekly
0
Stars
77

A jsonp adapter for axios

support promise,support cancel,same as xhr

install

npm install axios-jsonp

usage

let axios = require('axios');
let jsonpAdapter = require('axios-jsonp');

axios({
    url: '/jsonp',
    adapter: jsonpAdapter,
    callbackParamName: 'c' // optional, 'callback' by default
}).then((res) => {

});

Keywords