摘要:
FlatList是我们项目中经常使用的一个组件, 下面简述下使用中要注意的问题 一、keyExtractor keyExtractor的唯一性 /** * Used to extract a unique key for a given item at the specified index. Ke 阅读全文
摘要:
项目中我们经常会遇到如下写法 bind(this) //列表显示控件 renderItem={this.renderUserItem.bind(this)} 那么对于一个函数的调用我们到底什么时候需要.bind(this),什么时候不需要.bind(this)呢? 先说结论: bind(this)主 阅读全文