设置代理
1.1 在config->config.js->『将82行和88行的注释打开』
proxy: { '/server/api/': { // 代理前缀,请求格式:http://localhost:8000/server/api/资源地址,将所有以/server/api 开头的所有路由都代理到目标地址 target: 'http://www.example.com', // 代理目标地址 changeOrigin: true, // 是否跨域访问 pathRewrite: { '^/server': '' }, // 最终请求时候忽略掉server }, },
举个例子吧 1.有个接口 http://www.example.com/api/test,请求之后会返回{"message":"200"} 2.按照上面的的代理配置 ant desing pro 会发一个『http://localhost:8000/server/api/test』请求, 之后会去掉『http://localhost:8000/api/test』 最终代理成『http://www.example.com/api/test』
1.2 测试问题
如何测试呢?我准备放在后面更服务器进行交互的时候再说