本文介绍了无法解析模块 ReactNativeEventEmitter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将 React Native 从 0.29 升级到 0.30 后,我收到此错误消息.我多次删除 node_modules,重新安装它们,清除 watchman 缓存和 npm start --reset-cache.

我也在使用 react-native init someProject 的新项目上尝试过.同样的错误.这个模块是重命名的还是删除的?我在发行说明或提交中没有找到任何关于它的信息.

感谢您的帮助!

解决方案

不再需要.onTouchStart、onTouchEnd 和 onTouchMove 现在是 Views 的 props.看这里After upgrading React Native from 0.29 to 0.30, I get this error message. I multiple times deleted node_modules, installed them back again, cleared watchman cache and npm start --reset-cache.

I tried it also on new project with react-native init someProject. The same error. Was this module renamed or deleted? I haven't found any info about it in release notes or in commits.

Thanks for help!

解决方案

It's no longer needed. onTouchStart, onTouchEnd and onTouchMove are props of Views now.Look here

这篇关于无法解析模块 ReactNativeEventEmitter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 11:10