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
				}
			}

    }

猜你喜欢

转载自blog.csdn.net/lirunhui6/article/details/83618605