我想知道如何将状态从主页传递到Tabs?目前我正在使用导航将道具从一个页面转移到另一个页面但是从Tabs看起来我不能这样做,你有关于如何将道具传递给标签的功能或示例代码吗?
答案 0 :(得分:3)
简单地将状态传递为这样的道具:
<SampleComponent
sampleProps={this.state.MyMainPageState}
/>
从那里你可以在SampleComponent上访问它作为道具;)
在SampleComponent中,您可以尝试记录它:
//this is the state from your mainPage
const {sampleProps} = this.props;
console.log(sampleProps);
应该这样做