先安装依赖包,然后安装mockjs依赖包,最后运行
cnpm install
cnpm install mockjs
npm run dev
编辑文件 config/index.js
修改 api
upfile
转发配置
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '',
proxyTable: {
//企业信息请求的远程服务 //Updated 将直接对后台问服务请求,改为请求Zuul网关
'/api': {
target: 'http://localhost:9091',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
}
后端使用微服务编写,使用SpringBoot + SpringCloud + SpringMVC + SpringData