今天在做项目的时候 需要往api中发送一个json格式的对象,但是怎么改都不行,当然,使用的vue 的 http方法。
而且,开始使用时 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‘ };
即可。
时间: 2025-01-01 07:58:18