ReactNative进阶(二十六):子组件调用父组件中的函数
【摘要】 需求
在子组件执行某个操作的时候,需要其去调用父组件中的某个函数或者改变父组件中的某个参数。实现方式如下:
子组件
export default class Child extends PureComponent {
static propTypes = { onItemClick: React.PropTypes.func,
}
info = '子组...
需求
在子组件执行某个操作的时候,需要其去调用父组件中的某个函数或者改变父组件中的某个参数。实现方式如下:
子组件
export default class Child extends PureComponent {
static propTypes = { onItemClick: React.PropTypes.func,
}
info = '子组件的内容';
itemClick(index) { // 可以将子组件中的某个内容传出给父组件 if (this.props.onItemClick) { this.props.onItemClick(index); }
}
render(){ return( <TouchableOpacity onPress={() => { this.itemClick(this.index); }} style={styles.touchItem} > <Text > 点击修改父组件内容 </Text> </TouchableOpacity> );
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
父组件
export default class Father extends PureComponent {
_onItemClick(info) { console.log('你调用了父组件的方法') // 显示index或者用子组件的参数改变父组件中的参数 console.log(info);
}
render(){ return( <Child onItemClick={this._onItemClick} );
}
/>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
文章来源: shq5785.blog.csdn.net,作者:No Silver Bullet,版权归原作者所有,如需转载,请联系作者。
原文链接:shq5785.blog.csdn.net/article/details/116943164
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)