/

React,如何修復TypeError: resolver is not a function錯誤

React,如何修復TypeError: resolver is not a function錯誤

我在處理一個Next.js/React應用程式時遇到了這個相當困惑的錯誤訊息:

1
TypeError: resolver is not a function

結果解決方法非常簡單。

我正在進行一些編輯,並且將我正在編輯的API呼叫的預設匯出的組件註釋掉了:

1
export default <name>

所以,請確保你有一個預設匯出,錯誤就會消失。

tags: [“React”, “Next.js”, “TypeError”, “API calls”]