-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathmock-config.js
44 lines (42 loc) · 2.03 KB
/
mock-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var frontFiles = /^(\/\w+|)\/(h5\/.+|$|\w+\.html|favicon\.ico|__webpack_hmr|.+hot-update.+)/
const config = {
mockEnabled: true,
mockPath: ['root', 'root-old'], //模拟文件根目录
proxyTarget(uri) { //后台接口服务地址(代理目标),为空表示不代理
var frontPart = frontFiles.exec(uri.pathname)
if (frontPart) {
if (frontPart && frontPart[1]) { //url带了虚拟目录,转前端时不要虚拟目录
uri.pathname = frontPart[2]
uri.setChanged();
}
//前端页面,到h5
return 'http://localhost:8090'
}
//非前端页面(ajax和v9页面相关)
return 'http://localhost:8080' //.后端
},
isHttps: false, //是否https
port: 8087, //端口
proxyOptions: {
changeOrigin: true, //支持用IP远程访问
},
checkPath: function (urlPath) { //urlPath校验函数,返回true表示需要进行mock处理,为false直接走代理
return true
},
beforeResponse: function (respData, req) { //数据返回前的回调钩子,respData包含status、headers、body属性
respData.headers['access-control-allow-origin'] = req.headers.origin || req.headers.Origin || '';
respData.headers['access-control-allow-credentials'] = 'true';
respData.headers['access-control-allow-headers'] = req.headers['access-control-request-headers'] || req.headers['Access-Control-Request-Headers'] || '';
respData.headers['access-control-max-age'] = '6000';
respData.headers['access-control-allow-methods'] = 'PUT,POST,GET,DELETE,PATCH,OPTIONS';
respData.headers.P3P = 'CP="CAO PSA OUR"';
},
mapFile(pathname, req) {
return pathname
},
// genClientJs: '../src/js/mockClient.js', // 生成mockClient.js
samePreview: false, // true - mock预览时disabled开关也生效(默认false,预览时忽略所有开关)
logData: true, // mock预览时打印模拟数据
title: 'My App'
}
module.exports = config;