這就是在ajax請求的時候URL不正確, 例如:?
http://192.168.124.168:8082api/v1/task/get
正確的是這樣的:
http://192.168.124.168:8082/api/v1/task/get
這個錯誤的來源是 baseUrl + apiUrl 導致的, ?
比如baseUrl =?http://192.168.124.168:8082,? ?apiUrl =?api/v1/task/get
可以用一種安全的組裝URL的方式,這樣就不會有問題了:
new URL(apiUrl, baseUrl).href