1.阿萨达
萨达
阿萨达
阿萨达
proxy: { '/api': { // 匹配:接口前缀是/api的接口 走这个请求代理 'target': 'http://localhost:9000/',// 代理服务器转发到 服务器接口地址 'changeOrigin': true, 'pathRewrite': { '^/api': '/api' }, // 最后把/api 替换成空 '' 列如:/api/students 转化: http://jsonplaceholder.typicode.com/students 发送到服务器 }, },