开发过程中经常需要修改后台接口地址,如果将接口地址放进打包文件中,不便于后台人员上传项目时随时修改接口地址。
本文主要是解决前后台能方便及时的修改后台接口。

1.在static中创建js文件夹,js文件夹中创建config.js

var ApiUrl ;
if(location.hostname==='localhost'){  //前端本地测试
  ApiUrl = 'http://10.5.6.51:8080'
}else if(location.host==='10.5.6.52:1080'){  //线上发布地址
  ApiUrl = 'http://10.5.6.59:18080'
}

export {
  ApiUrl
}

2.在mian.js中引入 config.js

import {ApiUrl} from '../static/js/config'
Vue.prototype.baseUrl = ApiUrl;

3.在所有的页面可以直接使用this.baseUrl即可。例如:

 this.$http.get(this.baseUrl+'/api/v1/apiname').then((res)=>{
 }).catch((err)=>{
 })

4.打包后的文件目录如下:

dist文件为打包的文件,static/js/config.js为接口的配置文件

  1. 如果项目中有其他配置 不想放入打包文件中,可以直接在config.js中进行添加。

注:此方法的原理是vue不会将static中的文件进行打包,static中的文件属于静态资源

Logo

前往低代码交流专区

更多推荐