1. 程式人生 > >Vue的proxyTable解決跨域問題

Vue的proxyTable解決跨域問題

找到config資料夾下的index.js檔案,修改proxytable引數

proxyTable: {
    	'/api': {
				target: 'http://127.0.0.1:8081',//請求的介面域名
				changeOrigin: true,//允許跨域
				pathRewrite: {
					'^/api': '/'//替換  請求/api/index相當於請求http://127.0.0.1:8081/index
				}
			}

    }