在 React Native 的选项卡中传递道具



我想知道如何将状态从我的主页传递到选项卡?目前我正在使用导航将道具从一个页面传输到另一个页面,但从选项卡似乎我无法做到这一点,您是否有关于如何将道具传递到选项卡的功能或示例代码?

只需将状态作为道具传递,如下所示:

<SampleComponent 
   sampleProps={this.state.MyMainPageState} 
/>

从那里,您可以在 SampleComponent 上作为道具访问它;)

在 SampleComponent 中,您可以尝试记录它:

//this is the state from your mainPage
const {sampleProps} = this.props; 
 console.log(sampleProps); 

那应该做到

相关内容

  • 没有找到相关文章

最新更新