关于vue resource post 参数传不过去
关于vueResource与后台进行数据交互1、get的写法mounted: function() { this.$http.get("url").then( function (res) { // 处理成功的结果 },function (res) { // 处理失败的
关于vueResource与后台进行数据交互
1、get的写法
mounted: function() {
this.$http.get("url").then(
function (res) {
// 处理成功的结果
},function (res) {
// 处理失败的结果
};
);
2、post的写法
methods: {
testNum () {
var teln=this.register.tel;
console.log(teln)
this.$http.post("http://192.168.0.192:8085/user/phonePCMessageValidation",{'phoneNumber':'1563*****05'},{emulateJSON:true}).then(
function (res) {
// 处理成功的结果
console.log(res.body)
},function (err) {
// 处理失败的结果
console.log(err)
});
}
}
如果Web服务器无法处理编码为application/json的请求,你可以启用emulateJSON选项。启用该选项后,请求会以application/x-www-form-urlencoded
作为MIME type,就像普通的HTML表单一样。
说白了post在进行数据请求时;需要填写第三个参数{emulateJSON:true},否则后台是无法获取你传递的参数的
更多推荐
所有评论(0)