axios 修改了baseURL,仍然是原來的

emanlee發表於2024-09-01
const http = axios.create({
  // 通用請求地址字首
  baseURL: 'http://127.0.0.1:4523', 
  timeout: 10000 // 超時時間
})

解決方法:

如下圖:新增一句程式碼,然後重新執行即可:

console.log("@@@@http=",http)

相關文章