我在登录时候获取到了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带上一并请求数据,谢谢您的解答
添加回答
举报
0/150
提交
取消