ant design pro 修改代理
程序员文章站
2022-06-25 12:14:12
...
一、情况一(推荐使用,也是使用最多的)
const noProxy = process.env.NO_PROXY === 'true';
const proxy = {
'POST /api/(.*)': 'https://api.xxxx.com.cn/api/',
'GET /api/(.*)': 'https://api.xxxx.com.cn/api/',
}
export default (noProxy ? {} : delay(proxy, 1000));
//启动使用 npm start
二、情况二
const noProxy =true;
const proxy = {
}
export default (noProxy ? {
'POST /api/*':'https://api.xxxxx.com.cn/',
'GET /api/*':'https://api.xxxxx.com.cn/'
} : delay(proxy, 1000));
//启动使用 npm run start:no-proxy
返回数据:
提示:实际情况千奇百怪,这也可能只适用于我。