我想知道如何将状态从我的主页传递到选项卡?目前我正在使用导航将props从一个页面转移到另一个页面,但从选项卡看来我不能这样做,你有关于如何将props传递给选项卡的函数或示例代码吗?
在 React Native 的标签中传递props
IT技术
reactjs
react-native
react-redux
2021-05-14 06:32:16
1个回答
简单地将状态作为props传递,如下所示:
<SampleComponent
sampleProps={this.state.MyMainPageState}
/>
从那里你可以在你的 SampleComponent 作为props访问它;)
在 SampleComponent 中,您可以尝试记录它:
//this is the state from your mainPage
const {sampleProps} = this.props;
console.log(sampleProps);
那应该这样做