react-native中SectionList设置getItemLayout导致上滑没有加载?
getItemLayout={(data, index) => {
console.log('_getLen getItemLayout', {index});
const len = this._getLen(index);
return {
length: len.length + 960,
offset: len.offset,
index,
};
}}
1.这么写我发现上滑没有加载余下的部分,不知道为什么?
2.用如下方法调用 scrollToLocation
,传入参数 sectionIndex
是 1
, 而上面 console.log('_getLen getItemLayout', {index});
却输出 _getLen getItemLayout', { index: 5 }
,
为什么传入 1
而得到 5
呢?
this.SectionList.scrollToLocation({
animated: false,
itemIndex: 0,
sectionIndex: 1,
viewOffset: 0,
});
有一个类似的问题:
https://segmentfault.com/q/10...
这是官方文档: https://reactnative.cn/docs/v...
我的每一行长度是可以计算出来的,通过 this._getLen
,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论