使用useRef钩子无法访问React Native中的scrollToIndex()方法

时间:2019-10-09 05:16:02

标签: reactjs react-native react-hooks

我正在尝试使用功能组件中的scrollToIndex()钩子从FlatList访问scrollToItem()方法或useRef方法。我希望能够在组件中使用flatListRef.current.ScrollToIndex(),类似于基于类的组件使用this.flatListRef.ScrollToIndex()的方式:

 const flatListRef = useRef(React.createRef)
 <FlatList 
    data={items}
    renderItem={({ item }) => <Item item={item} />}
    keyExtractor={item => item.id.toString()}
    contentContainerStyle={styles.card}
    horizontal={true}
    showsHorizontalScrollIndicator={false}  
    ref={flatListRef}                      
/>

console.logging flatListRef.current没有显示我正在寻找的上述方法。

1 个答案:

答案 0 :(得分:2)

您无需使用createRef创建引用,只需使用useRef()。另一个重要的事情是正确使用scrollToIndex。请参见documentation和下面的代码。

代码:

const CustomFlatList = () => {
  const flatListRef = useRef(); // useRef 
  return (
    <View>
    <FlatList 
        data={items}
        renderItem={({ item }) => <Text style={{width: 100}}> {item.id} </Text> }
        keyExtractor={item => item.id.toString()}
        contentContainerStyle={styles.card}
        horizontal={true}
        showsHorizontalScrollIndicator={false}  
        ref={flatListRef} // create ref                
    />
     <TouchableHighlight onPress={() => flatListRef.current.scrollToIndex({index: 4, animated: true })}>
     <Text> ScrollToIndex </Text>
      </TouchableHighlight>
    </View>
  )
}

工作示例:

https://snack.expo.io/B1rfdbsuS