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
,