关于使用vue 的resource插件用post请求数据时一直是options的解决方案

来源:互联网 发布:caffe top bottom 编辑:程序博客网 时间:2024/06/02 17:45

请求参数,中加上对象:{"emulateJSON":true}即可解决

            this.$http.post(url,data,{"emulateJSON":true}).then(function (res) {                    console.log(res);            },function (err) {                console.log(err);            });        },
原创粉丝点击