我使用create-react-native-app在Windows 10上创建了一个React Native项目。然后我运行npm run exit来获得标准的React Native应用程序。几天后,该应用程序运行正常,运行npm run android将在我的设备上正确显示该应用程序。但是,在安装了几个模块(react-native-app-auth,react-native-navigation)之后,每当我尝试运行该应用程序时,此错误便开始在Node控制台中弹出,现在甚至在每个项目中都不断弹出,甚至新的。
path\to\project\node_modules\react-native\Libraries\react-native\react-native-implementation.js`: Module `ProgressBarAndroid` does not exist in the Haste module map
This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
1. Clear watchman watches: `watchman watch-del-all`.
2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.
3. Reset Metro Bundler cache: `rm -rf /tmp/metro-bundler-cache-*` or `npm start -- --reset-cache`. 4. Remove haste cache: `rm -rf /tmp/haste-map-react-native-packager-*`.
at ModuleResolver.resolveDependency (C:\path\to\project\node_modules\metro\src\node-haste\DependencyGraph\ModuleResolution.js:161:1460)
at ResolutionRequest.resolveDependency (C:\path\to\project\node_modules\metro\src\node-haste\DependencyGraph\ResolutionRequest.js:91:16)
at DependencyGraph.resolveDependency (C:\path\to\project\node_modules\metro\src\node-haste\DependencyGraph.js:272:4579)
at dependencies.map.relativePath (C:\path\to\project\node_modules\metro\src\DeltaBundler\traverseDependencies.js:376:19)
at Array.map (<anonymous>)
at resolveDependencies (C:\path\to\project\node_modules\metro\src\DeltaBundler\traverseDependencies.js:374:16)
at C:\path\to\project\node_modules\metro\src\DeltaBundler\traverseDependencies.js:212:33
at Generator.next (<anonymous>)
at step (C:\path\to\project\node_modules\metro\src\DeltaBundler\traverseDependencies.js:297:313)
at C:\path\to\project\node_modules\metro\src\DeltaBundler\traverseDependencies.js:297:473
BUNDLE [android, dev] ./index.js ░░░░░░░░░░░░░░░░ 0.0% (0/1), failed.
我尝试按照此处的说明进行操作,但无济于事:https://github.com/facebook/react-native/issues/4968
我也尝试按照那里的说明进行操作(我的问题似乎与他们的问题无关),无济于事:React native: Module `DrawerLayoutAndroid` does not exist in the Haste module map 如果我按照唯一答复中的建议进行操作,则会出现相同的错误,但具有不同的本机模块,并且如果我不断删除这些行,则每次都会弹出一个不同的模块。
我还尝试从头开始,使用不同版本的react-native创建一个新项目,甚至完全重新安装Node和npm,但是错误仍然弹出。我发现重新使它工作的唯一方法是从另一台机器上重新开始。
谢谢。