1.參考資料html
2.目錄地址react
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』
如何測試呢?我準備放在後面更服務器進行交互的時候再說