我是靠谱客的博主 傻傻棉花糖,这篇文章主要介绍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请求的例子:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
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请求的例子:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是傻傻棉花糖最近收集整理的关于vue的$http的get请求要加上params操作的全部内容,更多相关vue内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(136)

评论列表共有 0 条评论

立即
投稿
返回
顶部