Vue專案 --- proxyTable配置

weixin_33850890發表於2018-07-11

配置
通過使用webpack提供的proxyTable配置axios的請求url
首先開啟/config/index.js,然後在其中配置如下:

proxyTable: {
      '/api': {
        target: 'http://localhost:8080',
        pathRewrite: {
          '^/api': '/static/mock'
        }
      }
 }

如上面配置,在進行ajax請求的時候,url就可以寫成'/api/'+檔案地址

axios.get('/api/index.json?city=' + this.city)
        .then(this.getHomeInfoSucc)

等和介面聯調的時候我們再重新配置proxyTable

相關文章