reqwest({ url: 'http://123.456.789/api/', type: 'json',
headers: Cookies.get('token') ? {'Authorization': 'Token ' + Cookies.get('token')} : {},
success: function (resp) {
console.log(resp);
},
});
上面是我用reqwest库带token请求的写法,并且请求成功返回数据,请问axios应该怎么写?用axios搞了半天都没请求到
添加回答
举报
0/150
提交
取消