vue项目部署,网关服务配置文件修改

2020-09-03  本文已影响0人  飞鹰_007

1.在index.html同级文件夹下新建config.js:

  window.global_config = {

    BASE_URL: "http://baidu.com",  //服务地址,可打包后动态修改

  };

2.在index.html加入:

  <script src="./config.js"></script>

3.在封装的公共请求如request.js里加入:

  service.interceptors.request.use(config => {

    config.url = window.global_config.BASE_URL+config.url;

  })

上一篇 下一篇

猜你喜欢

热点阅读