Vue-resource中post请求将data数据以request payload转换为form data的形式
这是当初我使用vue-resource中post请求时的一个坑,vue-resource中post发送的数据默认以request payload的形式,而一般我们使用的都是form data的形式。如何更改其形式只需要在main.js中写入以下代码:Vue.http.options.emulateJSON = true;Vue.http.options.headers = {'Content
·
这是当初我使用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'
};
更多推荐
已为社区贡献19条内容
所有评论(0)