react-native之SectionList 中state更新,render不重新渲染问题
问题一:react-native之SectionList 中state更新,render不重新渲染问题
解决方法:在SectionList 里面加上 extraData={this.state} 就可以了
问题二:SectionList 中 renderSectionHeader 里面绑定函数不能传参问题
解决方法:在constructor里面加上下面这句话,完美解决this
this.renderSectionHeader = this.renderSectionHeader.bind(this);
只作为本人笔记,有问题的同学欢迎下方留言。。。,共同商讨进步
Component
以上是 react-native之SectionList 中state更新,render不重新渲染问题 的全部内容, 来源链接: utcz.com/z/382722.html