這次帶給大家vue proxyTable怎麼實作介面跨域請求偵錯,vue proxyTable實作介面跨網域請求偵錯的注意事項有哪些,下面就是實戰案例,一起來看一下。
在不同網域之間存取是比較常見,在本地偵錯存取遠端伺服器。 。 。 。這就是有域問題。
VUE解決透過proxyTable:
在 config/index.js 設定檔中
dev: { env: require('./dev.env'), port: 8080, autoOpenBrowser: true, assetsSubDirectory: 'static', assetsPublicPath: '/', //proxyTable: {}, proxyTable: proxyConfig.proxyList, // css Sourcemaps off by default because relative paths are "buggy" // with this option, according to the CSS-Loader README // (https://github.com/webpack/css-loader#sourcemaps) // In our experience, they generally work as expected, // just be aware of this issue when enabling this option. cssSourceMap: false }
劃紅線部分就是設定代理參數:
# 在config目錄創建,proxyConfig.js 寫入
module.exports = { proxyList: { '/apis': { // 测试环境 target: 'https://goods.footer.com', // 接口域名 changeOrigin: true, //是否跨域 pathRewrite: { '^/apis': '' //需要rewrite重写的, } } } }
var proxyConfig = require('./proxyConfig')
var obj = { pageSize: 20 } this.$http.get( '/apis/health/list',{params: obj}) .then(function(res){ // 成功回调 },function(){ alert("error") })
以上是vue proxyTable怎麼實作介面跨域請求偵錯的詳細內容。更多資訊請關注PHP中文網其他相關文章!