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操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持好吧啦网。
相关文章:
1. java中Hibernate面试知识点整理2. Python操作MongoDb数据库流程详解3. Java之JSP教程九大内置对象详解(下篇)4. JSP开发之hibernate之单向多对一关联的实例5. springboot使用CommandLineRunner解决项目启动时初始化资源的操作6. springboot中swagger、异步/定时/邮件任务的问题7. Android如何用自定义View实现雪花效果8. .NET 中配置从xml转向json方法示例详解9. Python常用base64 md5 aes des crc32加密解密方法汇总10. vue-iview动态新增和删除的方法

网公网安备