gpt4 book ai didi

react-native - 首次加载屏幕时,React Native FlatList scrollToIndex() 不起作用

转载 作者:行者123 更新时间:2023-12-04 07:41:24 58 4
gpt4 key购买 nike

我的 React Native 应用程序中有这个类别过滤器组件。第一次加载此组件时,它不会滚动到给定的索引项(即 3)。我查了一下,功能scrollToIndex正在调用。但是当组件重新渲染时加载屏幕后它正在工作。
为什么在第一次加载屏幕时不向下滚动?

import React, { useCallback, useRef } from 'react'
import { StyleSheet, TouchableOpacity, FlatList, View } from 'react-native'
import { Badge, Text } from 'native-base'
import { connect } from 'react-redux'
import * as categoryActions from '../../Redux/Actions/categoryActions'
import { useFocusEffect } from '@react-navigation/native'

const CategoryFilter = (props) => {
const flatlistRef = useRef()

const handleSetSelectedCategoryId = (categoryId) => {
props.setSelectedCategoryId(categoryId)
}

const getItemLayout = (data, index) => ({
length: 50,
offset: 50 * index,
index,
})

const scrollToIndex = () => {
console.log('scroll to index called !')
let index = 3
flatlistRef.current.scrollToIndex({ animated: true, index: index })
}

useFocusEffect(
useCallback(() => {
scrollToIndex()
}, [])
)

const renderItem = ({ item, index }) => {
return (
<TouchableOpacity
key={item._id}
onPress={() => {
handleSetSelectedCategoryId(item._id)
}}
>
<Badge
style={[
styles.center,
{ margin: 5, flexDirection: 'row' },
item._id == props.selectedCategoryId
? styles.active
: styles.inactive,
]}
>
<Text style={{ color: 'white' }}>{item.name}</Text>
</Badge>
</TouchableOpacity>
)
}

return (
<View>
<FlatList
data={props.categories}
renderItem={renderItem}
keyExtractor={(item) => item._id}
horizontal={true}
ref={flatlistRef}
getItemLayout={getItemLayout}
/>
</View>
)
}
....

最佳答案

我有一个类似的问题,这些是我的发现:
在 flatlist 使用 getItemLayout 完成计算项目大小之前,似乎可能存在一种竞争条件,即 scrollToIndex 发生。所以它不会抛出超出范围的错误并认为滚动成功。
一种解决方案是:

setTimeout(() => scrollToIndex(), 500);
然而,这不是一个很好的解决方案,因为不能保证 flatlist 会在任意给定的 500 毫秒内“准备好”滚动,这意味着我们的延迟调用仍然不起作用。
推荐方式:
套装 initialScrollIndex在带有我们要滚动到的索引的 FlatList 上。
数据数组(传递给 FlatList)需要已经有您要查找的索引,否则您将收到超出范围的错误。
您还应该注意(来自文档):

This disables the "scroll to top" optimization that keeps the first initialNumToRender items always rendered and immediately renders the items starting at this initial index.


更多信息在这里: https://reactnative.dev/docs/flatlist#initialscrollindex

关于react-native - 首次加载屏幕时,React Native FlatList scrollToIndex() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67440618/

58 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com