如何解决 TypeError:在 React-Native 中 undefined 不是对象(评估'_core.pathUtils.urlToPathAndParams')
2020-01-20
2952
我的应用程序运行正常,但当我从 git 存储库提取数据时,出现了此错误。 我不明白为什么会出现此错误。请帮助消除此错误并向我解释此错误。
错误为 TypeError:undefined 不是对象(评估“_core.pathUtils.urlToPathAndParams”)
3个回答
您可能需要安装
@react-navigation/native
。
webjay
2020-03-05
我尝试了很多次这种方法,但得到了这个错误
我删除了node_modules和package-lock.json文件,并在终端中运行
npm install
,但错误没有消除。
第二种方法:
然后我做了一些类似的步骤
我运行了这些命令:
rm -rf node_modules/
yarn install
yarn start --reset-cache
现在错误消失了。 如果你也遇到了这些类型的错误,请尝试这种方法(第二种方法)。
Tarun Bhardwaj
2020-01-23
发生此类错误的原因是
in your pull request you might be get some new npm in your
package.json file. so try to do npm install
or
try to remove node_modules and package-lock.json file
do npm install might be solve your problem
Prakash Karena
2020-01-20