vue项目中$http的get请求为什么需要加params

这期内容当中小编将会给大家带来有关vue项目中$http的get请求为什么需要加params,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

vue GET传递参数要加上params

this.$http.get('/operation/customer/question/edits',{params:{id: 10}})

另外说一句,现在VUE官方推荐使用axios

vue-resource不更新了

补充知识: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项目中$http的get请求为什么需要加params了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。