axios设置header信息
程序员文章站
2022-07-02 17:06:07
...
以下方法是在vue-cli 中使用,this指vue
this.axios.post(`${API_HOST}/api/auth/login`, obj, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}).then(function(response) {
const data = response.data;
}, function(response) {});
this.axios({
method: "POST",
url: `${API_HOST}/api/bind/index`,
data: obj,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}).then(function(res) {
console.log(res);
});
上一篇: jquery实现左右轮播切换效果
下一篇: 前端与HTTP