vue请求中 post get传参方式是不同的哦

Posted EllenBaby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue请求中 post get传参方式是不同的哦相关的知识,希望对你有一定的参考价值。

我在学习vue,项目中post请求,get请求都用到了,我发现传参方式是不一样的。

post请求的例子:

checkin (){
this.$http.post(‘my url‘,{
mobilePhone:this.phone,
password:this.password
},{
emulateJSON: true
}
).then(function(res){
this.$root.userid=res.data.userid;
console.log(this.$root.userid)
this.$router.push(‘/content‘) ;
});
}
 
 
get请求的例子:
nextOne2 (){
this.$http.get(‘http://192.168.100.31:8080/wenchuang/guid/addProductFile‘,{
params: {
filename:this.formData.chanpinjia,
userid: this.$root.userid
},
},{
emulateJSON: true
}
).then(function(res){
this.step++;
this.bianliang= res.data.files.id;
});
},
 

以上是关于vue请求中 post get传参方式是不同的哦的主要内容,如果未能解决你的问题,请参考以下文章

HTTP中get请求与post请求区别

vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析

vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析

vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析

VUE post请求设置为formdata传参

springboot的服务端Restful风格 API接口,在不同场景下,设置不同的请求及传参方式的设计,及其他异常场景解决方案