vue.js中怎么带参数请求接口
其他问答
1
在vue.js项目里我想用一个js文件存放接口的公共部分和加解密的方法,然后我第一次用vue+webpack不太会用,所以请问一下该怎么写?
-
var demo=new Vue({ el:'#app' , data: { imgList:[], getImgUrl: ' ' //存数据接口 }, created: function(){ this.getImg() //定义方法 }, methods: { getImg: function(){ var that = this; that.$http({ //调用接口 method:'GET', url:this.getImgUrl //this指data }).then(function(response){ //接口返回数据 this.imgList=response.data; },function(error){ }) } } })
-
可以创建一个公共方法文件common.js
module.exports = { encrypt (){ console.log(); }, decrypt (){ console.log(); } }
在入口文件中,或vue中引用import common from './common.js'
发表回复