Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

unhandledRejectionエラーの解決ができません。

解決したいこと

Vue3でアプリケーションを作っているのですが、エラーの解決方法がわかりません。

発生している問題・エラー


 ERROR  [unhandledRejection] Cannot read properties of undefined (reading 'onError')                                                                                                                                           22:07:20

  at toNodeHandle (node_modules/nuxi/dist/chunks/index2.mjs:885:23)
  at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

自分で試したこと

yarn install
rm -rf node_modules → yarn install
上記でnodeを入れ直したりしているのですが、解決することができません。

0

1Answer

Cannot read properties of undefined (reading 'onError')

アプリケーションのどこかに 何かの変数.onError というコードがあり、何かの変数の値が undefined なせいで onError プロパティの読み取りに失敗したというエラーです。 Cannot read properties of xxx (reading 'yyy') のエラーメッセージは頻出なのでぜひ覚えておいてください。

問題はご自分が書いたコードにあることもありますし、何かのライブラリに undefined を渡した結果、その中で起きることもあります。これ以上の情報はエラーからは読み取れません。

0Like

Comments

  1. @anjikitomohiro

    Questioner

    ありがとうございます。
    チーム開発でnodeのバージョンを指定していたのに、最新で作業していたことで起きたエラーのようでした。

Your answer might help someone💌