码迷,mamicode.com
首页 > 其他好文 > 详细

react native 子组件向父组件传值

时间:2018-10-25 21:40:51      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:组件   reac   ops   bsp   res   传值   type   OLE   nbsp   

父组件:
 
引入子组件:import CheckBox from  ‘../checkbox‘;
 
父子之间交互通信,接受子组件的值
fn(val){
this.setState({
roleType:val
});
}
 
//调用通信
<CheckBox data={this.state.roleType} isRow={styles.isRow} fn={this.fn.bind(this)}/>
 
子组件:
其中fn里面传递的值为要传递给父组件的值
onPress={()=>{
this.props.fn(this.state.data)
}}

react native 子组件向父组件传值

标签:组件   reac   ops   bsp   res   传值   type   OLE   nbsp   

原文地址:https://www.cnblogs.com/yuxingxingstar/p/9852960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!