config文件夹下的index.js文件夹下找到proxyTable
添加apis
proxyTable: {
'/apis': {
// 测试环境
target: 'url', // 接口域名比如说公司接口都是http://192.168.7.41:8080/123/lond或http://192.168.7.41:8080/123/sjjl则写入http://192.168.7.41:8080/123
changeOrigin: true, //是否跨域
pathRewrite: {
'^/apis': '' //需要rewrite重写的,
}
}
},
ajax中url: "/apis/lond",即可