问题描述
我试图将数据“item”从子组件传递给父组件,但父组件中的 handleCallback 函数无法实现道具数据“item” 请帮我 下面是我的代码 子组件代码
RenderViewListAddressVN(item) {
return (
<TouchableOpacity
onPressIn={(item) => this.props.parentCallback(item)}
onPress={() => this.closeModal()
}
>
)
}
这里是父组件
handleCallBack() {
this.setState({ data: this.props.item })
Logger.debug(data)
Logger.debug('itemmm')
_renderSoDiaChiModal() {
return (
<SoDiaChiModal
parentCallback={this.handleCallBack}
navigation={this.props.navigation}
ref={c => this.soDiaChiModal = c}
/>
)
}
谢谢各位
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)