在 React Native 中提升状态时卡住
Stuck While lifting state up in React Native
我正在创建一个用于学习目的的示例 React 应用程序,因为我遵循独立组件的层次结构:
<RadioButton>
//Radio buttons are rendered here and selection of radio buttons are maintained in state of this component
</RadioButton>
<SelectCard>
<RadioButton dataToPopulate = ['choice A', 'choice B'] />
</SelectCard>
<ParentSelectCard>
<SelectCard /> //Rendering SelectCard with passing some data as prop from here
</ParentSelectCard>
<Button /> //Custom button component
<HomeScreen>
<ParentSelectCard />
<Button />
</HomeScreen>
现在,当我按下按钮时,我想通过在单选按钮中传递所选选项来导航到其他屏幕。
我读过this article about lifting state up.但问题是,这里没有我可以将状态提升到的共同父祖先。
如果我列出 <HomeScreen>
组件的状态,我如何管理在 <RadioButton>
组件中所做的选择?
这里是<RadioButton>
组件的完整代码:
class RadioButton extends React.Component {
constructor(props) {
super(props);
this.state = {
radioSelected: 0
}
}
handleRadioClick(id) {
this.setState({
radioSelected: id
});
}
render(){
return this.props.dataToPopulate.map((element) => {
return (
<View key = {element.id} style={styles.radioButton}>
<TouchableOpacity style={styles.radioButtonTint} onPress = {this.handleRadioClick.bind(this, element.id)}>
{ element.id === this.state.radioSelected ? (<View style={styles.radioButtonSelected}/>) : (null) }
</TouchableOpacity>
<Text style={styles.radioButtonText}> {element.value} </Text>
</View>
);
});
}
}
在这里你可以看到最终做出的选择将存储在这个组件的状态中(在radioSelected
)。
我在这里缺少什么?我的<RadioButton>
设计错了吗?
What I'm missing here? Is my design of is wrong?
好吧,如果你 "lift state up" 单选按钮本身根本不应该有任何状态。而是将处理程序传递给 RadioButton:
<RadioButton onChange={value => this.doSomethingWith(value)} />
然后您可以在发生任何更改时在单选按钮内部调用它,并在 <App/>
中处理结果。
如果您必须通过多个级别传递该处理程序,最好使用 context。
我正在创建一个用于学习目的的示例 React 应用程序,因为我遵循独立组件的层次结构:
<RadioButton>
//Radio buttons are rendered here and selection of radio buttons are maintained in state of this component
</RadioButton>
<SelectCard>
<RadioButton dataToPopulate = ['choice A', 'choice B'] />
</SelectCard>
<ParentSelectCard>
<SelectCard /> //Rendering SelectCard with passing some data as prop from here
</ParentSelectCard>
<Button /> //Custom button component
<HomeScreen>
<ParentSelectCard />
<Button />
</HomeScreen>
现在,当我按下按钮时,我想通过在单选按钮中传递所选选项来导航到其他屏幕。
我读过this article about lifting state up.但问题是,这里没有我可以将状态提升到的共同父祖先。
如果我列出 <HomeScreen>
组件的状态,我如何管理在 <RadioButton>
组件中所做的选择?
这里是<RadioButton>
组件的完整代码:
class RadioButton extends React.Component {
constructor(props) {
super(props);
this.state = {
radioSelected: 0
}
}
handleRadioClick(id) {
this.setState({
radioSelected: id
});
}
render(){
return this.props.dataToPopulate.map((element) => {
return (
<View key = {element.id} style={styles.radioButton}>
<TouchableOpacity style={styles.radioButtonTint} onPress = {this.handleRadioClick.bind(this, element.id)}>
{ element.id === this.state.radioSelected ? (<View style={styles.radioButtonSelected}/>) : (null) }
</TouchableOpacity>
<Text style={styles.radioButtonText}> {element.value} </Text>
</View>
);
});
}
}
在这里你可以看到最终做出的选择将存储在这个组件的状态中(在radioSelected
)。
我在这里缺少什么?我的<RadioButton>
设计错了吗?
What I'm missing here? Is my design of is wrong?
好吧,如果你 "lift state up" 单选按钮本身根本不应该有任何状态。而是将处理程序传递给 RadioButton:
<RadioButton onChange={value => this.doSomethingWith(value)} />
然后您可以在发生任何更改时在单选按钮内部调用它,并在 <App/>
中处理结果。
如果您必须通过多个级别传递该处理程序,最好使用 context。