react native常见的真机调试错误及警告集锦(持续更新中...)

1,undefined不是函数(评估'_this.registerEvents()')

由于项目使用了最新的RN版本:0.57.0,所引起的:

首先在项目目录下运行react-native start --reset-cache;

之后再运行react-native run-android就可以了;

2、 TaskQueue: Error with task : Invariant Violation: Invariant Violation: Tried to get frame for out of range index NaN;

出现这种错误的主要原因是ListView的数据源为空,你可以按照数据源的赋值过程查找

你可能感兴趣的:(react,native)