1. 設定proxy.config.json檔案
{
"/api": { //這裡是前臺呼叫後端介面時做的代理標識
"target": "localhost:3100",
"logLevel": "debug",
"secure": false,
"changeOrigin": true,
"pathRewrite": {
"^/api": ""
}
}
}
複製程式碼
注意:pathRewrite
部分的配置,"pathRewrite": {"^/api": ""}
如果沒有這部分的配置,那在傳送請求的時候,實際請求的地址將會是http://localhost:3100/api/actionapi/
。相較於真實url
,會多出/api
這一部分。
2. 設定service的url
//這裡的api表示代理標識
//實際的訪問url應該是:http://localhost:3100/actionapi/
const wcfPath = '/api/actionapi/';
複製程式碼
3. 設定package.json檔案
"scripts": {
"ng": "ng",
"build": "ng build --prod --aot --build-optimizer",
"start:dev": "ng serve --proxy-config proxy.conf.json --open",
"start:aot": "ng serve --prod --aot --proxy-config proxy.conf.json --open",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
}
複製程式碼
再重新npm run start:dev啟動一下專案,應該就能啟用angular反向代理了。