2

在 web 中运行 react-native 代码时无法滚动到特定位置。

当我在移动设备上运行与 react-native 应用程序相同但不能在 react-native-web 中运行时,我可以滚动到位置。

我尝试使用 web 和 react-native 属性来实现这一点,但找不到确切的解决方案。

<ScrollView 
  contentOffset = {{x: 0, y: this.state.scrollHeight}} 
  style={{marginBottom: window.innerHeight/5,}} 
  ref="scrollView" 
  onLayout={(e)=> { 
    console.log("ht",e.nativeEvent.layout) 
    this.refs.scrollView.scrollTo({x:0,y:e.nativeEvent.layout.height}) 
    this.setState({ scrollHeight: e.nativeEvent.layout.height }); 
  }} 
  onContentSizeChange={(width, height) => { 
    this.refs.scrollView.scrollTo({ y: this.state.scrollHeight }); 
  }} 
>

让我知道,如果有人遇到同样的问题并解决了。

4

0 回答 0