componen...">
美文网首页
RN常见报错信息

RN常见报错信息

作者: 戒惜舍得 | 来源:发表于2017-09-14 14:19 被阅读46次

RawText " " must be wrapped in an explicit <Text> component.

原因:
render和他调用方法里面有空格没有放在Text控件中,开发的时候,中文空格经常输入。

Warning: Each child in an array or iterator should have a unique "key" prop.
Check the render method of VirtualizedList.

上面这个flatList 常见报错。

原因:
keyExtractor={item => item.userId}
这里需要注意的是 item 后面的属性一定要是每一个row 都有的并且不一样的值。

"Warning: setState(...): Can only update a mounted or mounting component.
这里我打开模拟器,看有Stacktrace 打开是指向这局代码:
this.setState({count: ++count});

相关文章

网友评论

      本文标题:RN常见报错信息

      本文链接:https://www.haomeiwen.com/subject/zqrdsxtx.html