vue请求中 post get传参方式


转:https://www.cnblogs.com/ellenbaby/p/9006874.html

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;
});
},
 

猜你喜欢

转载自blog.csdn.net/zhaofuqiangmycomm/article/details/89479904