大家好~
不知道大家在開發專案的時候會不會遇到一個狀況是,
專案實際擺放的路徑與ng serve起來的路徑不一致,
造成API無法正常運作的問題?
例如,一般ng serve起來的路徑都會像是這樣:http://localhost:4200/#/login
但實際擺放的路徑可能會是這樣:http://xxx.xxx.xxx/xxx/#/login
而在API中,可能會針對/xxx
這個路徑底下的頁面做一些設定或是設定一些header之類,
但由於開發中的路徑並無/xxx
這個路徑,導致API無法正常運作,
找了一些資料 說是 --host
參數可以設定,
但我像這樣ng serve --host localhost/ref
使用時,是會Error的
getaddrinfo ENOTFOUND localhost/ref
Error: getaddrinfo ENOTFOUND localhost/ref
at errnoException (dns.js:28:10)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:73:26)
所以小弟想請問,有沒有什麼方式可以達成這種需求的呢?