React應用裡Invalid hook call錯誤消息的處理

今天我做React開發時,遇到如下的錯誤消息:

Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: 1. You might have mismatching versions of React and the renderer (such as React DOM) 2. You might be breaking the Rules of Hooks 3. You might have more than one copy of React in the same app See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.

React應用裡Invalid hook call錯誤消息的處理


React應用裡Invalid hook call錯誤消息的處理

這個錯誤輸出已經提醒了我,出錯誤的代碼在我的應用程序MyApp.jsx裡:

React應用裡Invalid hook call錯誤消息的處理


原來是我這段const變量初始化代碼寫到function外部了:

React應用裡Invalid hook call錯誤消息的處理

將其移至內部後錯誤消失:

React應用裡Invalid hook call錯誤消息的處理


React應用裡Invalid hook call錯誤消息的處理


分享到:


相關文章: