1.跨域
config/index.js 主配置文件中 dev 属性下 proxyTable 配置代理信息:
proxyTable: { '/api': { // 匹配所有以 '/api'开头的请求路径 target: 'http://localhost:4000', // 代理目标的基础路径 //表示允许跨域请求 4000端口下的数据 changeOrigin: true, // 支持跨域 pathRewrite: { // 重写路径: 去掉路径中开头的'/api' '^/api': '' } } }, //代理设置