注意事项 参数是headers 不是header
以下方法是在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); });