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,传入参数 sectionIndex1 , 而上面 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,

阅读 2.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏