Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为我的用户创建个人资料屏幕。看起来像这样
用户可以通过点击 TouchableOpacity 来编辑信息,wix-react-native-navigation 中的灯箱将弹出供用户编辑信息。它会看起来像这样
但是我如何将文本输入从灯箱传递给父级?
将签名为 down 的 onSave 函数传递onSave(name)给您点击保存时调用的对话框。然后,当用户触发保存时,您可以() => this.props.onSave(this.state.name)使用文本框数据调用父函数。那有意义吗?
onSave(name)
() => this.props.onSave(this.state.name)