在标签中传递道具反应原生

时间:2017-10-12 21:26:31

标签: reactjs react-native react-redux

我想知道如何将状态从主页传递到Tabs?目前我正在使用导航将道具从一个页面转移到另一个页面但是从Tabs看起来我不能这样做,你有关于如何将道具传递给标签的功能或示例代码吗?

1 个答案:

答案 0 :(得分:3)

简单地将状态传递为这样的道具:

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

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

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

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

应该这样做