全局方法,全局变量
程序员文章站
2024-01-26 22:02:46
...
全局方法,全局变量
全局变量:
在index.vue中定义一个方法,请求接口去拿返回值
getimgurl:function(){
let _this=this
this.axios.get('url/user/imgHttpUrl.json')
.then(function (res) {
console.log(res)
_this.httpurl=res.data
Vue.prototype.$imgHttpUrl = res;
})
},
用Vue.prototype.$imgHttpUrl保存一下
Vue.prototype.$imgHttpUrl = res;
别忘了一定要引入vue,否则vue.prototype会报错
import Vue from 'vue'
在需要的页面直接用即可
{{$imgHttpUrl.data}}