RN在导航条的按钮中携带本页面的数据
2018-05-07 本文已影响28人
zhangwenqiang
方式:在本页面的componentDidMount函数中,设置导航条的属性:
async componentDidMount() {
// 初始化导航条
this.props.navigation.setParams(
{headerTitle: <LogoTitle
initialTitleIndex={this.state.nTitleIndex}
callbackParent={this.onTitleClicked.bind(this)}
/>
});
}