Error: A cross-origin error was thrown. React doesn't have access to the actual error object in development.
事象
Reactのアプリケーションで以下のエラーが出ました。
Error: A cross-origin error was thrown. React doesn't have access to the actual error object in development. See https://fb.me/react-crossorigin-error for more information
原因
- エラーメッセージ通りですが、CORSエラーでした。
- 空のlocalStorageを参照しようとしていたのが原因でした。
- localStorage周りの原因が多そうです。
sample.js
// localStorageに"hogehoge"はない
const hoge = localStorage.getItem("hogehoge")
対応
- localStorageの"hogehoge"を参照する前に条件分岐を入れることで対応しました。
Author And Source
この問題について(Error: A cross-origin error was thrown. React doesn't have access to the actual error object in development.), 我々は、より多くの情報をここで見つけました https://qiita.com/kazu_1247/items/61113368cf40802a9e92著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .