vue接口地址配一个全局的

时间:2023-03-09 18:45:33
vue接口地址配一个全局的
main.js加

if (process.env.NODE_ENV !== 'development') {
Vue.prototype.URL_PREFIX = 'http://139.196.7.54'
} else {
Vue.prototype.URL_PREFIX = ''
}

在main.js文件中根据配置的参数的情况,更改api接口:生产环境用的139的地址

1 if (process.env.NODE_ENV !== 'development') {
2 Vue.prototype.URL_PREFIX = 'http://139.196.7.54'
3 } else {
4 Vue.prototype.URL_PREFIX = ''
5 }

调用的时候

vue接口地址配一个全局的
1 this.$http.get(`${this.URL_PREFIX}/WebService/GPSAPPWebService.asmx/VehicleInfoCount?orgId=${userData.orgId}`).then(m => {
2 let data = eval(m.data)
3 _this.count = data.data.Count
4 _this.onlineCount = data.data.OnlineCount
5 })
vue接口地址配一个全局的
https://www.cnblogs.com/molinglan/p/7065364.html

相关文章