为了账号安全,请及时绑定邮箱和手机立即绑定

axios如何在发送传token请求参数?

axios如何在发送传token请求参数?

holdtom 2019-05-12 12:09:14
我在登录时候获取到了token并存在localStorage里面,想知道如何在axios上请求数据console.log(localStorage.getItem("token"));//这个可以成功输出数据//这是请求代码beforeCreate(){this.axios.post(`/api/services/app/role/GetRoles`,{permission:""}).then(response=>{console.log(response.data.result);}).catch(function(error){console.log(error);});}};想问一下这个如何才能把token带上一并请求数据,谢谢您的解答
查看完整描述

2 回答

?
小怪兽爱吃肉

TA贡献1852条经验 获得超1个赞

token这种东西放拦截器里就行了。
axios.interceptors.request.use(config=>{
config.headers.permission=localStorage.getItem("token")
returnconfig
})
                            
查看完整回答
反对 回复 2019-05-12
  • 2 回答
  • 0 关注
  • 1315 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信