首先进行安装axios
可以使用 yarn安装 命令如下: yarn add axios
执行get请求
axios.get('/user',{
params:{ id:13}
}).then(function (response) {
console.log(response)
}).catch(function (err)
{
console.log(err)
})
执行 POST
请求
axios.post('/user', { firstName: 'Fred', lastName: 'Flintstone' }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); |
执行多个并发请求
function getUserAccount() { return axios.get('/user/12345'); } function getUserPermissions() { return axios.get('/user/12345/permissions'); } axios.all([getUserAccount(), getUserPermissions()]) .then(axios.spread(function (acct, perms) { // 两个请求现在都执行完成 })); |