这是当初我使用vue-resource中post请求时的一个坑,vue-resource中post发送的数据默认以request payload的形式,而一般我们使用的都是form data的形式。如何更改其形式只需要在main.js中写入以下代码:
Vue.http.options.emulateJSON =
true;
Vue.http.options.headers = {
'Content-Type':
'application/x-www-form-urlencoded;charset=UTF-8'
};
转载请注明原文地址: https://ju.6miu.com/read-672928.html