vue.js中怎么带参数请求接口

毕设小屋 其他问答 1

在vue.js项目里我想用一个js文件存放接口的公共部分和加解密的方法,然后我第一次用vue+webpack不太会用,所以请问一下该怎么写?

回复

共2条回复 我来回复
  • 毕设货栈
    这个人很懒,什么都没有留下~
    评论
    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){ }) } } 
    })
    
    0条评论
  • 毕设导航
    这个人很懒,什么都没有留下~
    评论

    可以创建一个公共方法文件common.js

    module.exports = {
    encrypt (){
    console.log();
    },
    decrypt (){
    console.log();
    }
    }
    

    在入口文件中,或vue中引用import common from './common.js'

    0条评论

发表回复

登录后才能评论