postAxios({commit}){
axios({
method:'get',
baseURL:'/api',
url:'/resume/app_chat_resume_index',
headers:{'form-data':'abc123'},
auth:{
username:'abc123',
password:''
},
})
.then(function (rsp) {
let json = rsp.data.data;
commit('refreshData',json);
})
.catch(function (err) {
console.log('请求失败',err);
})
}
从接口获取数据,后端说发送时要带头部,这是什么意思???
小白一个>_<
大神们,帮忙看看。。
header 换成:
应该就成功了。