2
我想使用相同的狀態變量說計數和更新並檢索更新的一個。更新來自兩個不同組件的相同變量
我寫了下面的代碼作爲由一個按鈕和一個標籤組成的高階組件。兩者都更新計數,但它們有單獨的實例。那麼如何重新調整我的代碼以保持變量計數的相同副本。
const HOC = (InnerComponent) => class extends React.Component{
constructor(){
super();
this.state = {
count: 0
}
}
update(){
this.setState({count: this.state.count + 1})
}
render(){
return(
<InnerComponent
{...this.props}
{...this.state}
update = {this.update.bind(this)}
/>
)
}
};
class App extends React.Component {
render() {
return (
<div>
<Button>Button</Button>
<hr />
<LabelHOC>Label</LabelHOC>
</div>
);
}
}
const Button = HOC((props) => <button onClick={props.update}>{props.children} - {props.count}</button>)
class Label extends React.Component{
render(){
return(
<label onMouseMove={this.props.update}>{this.props.children} - {this.props.count}</label>
)
}
}
const LabelHOC = HOC(Label)
export default App;
輝煌!我對你答案的前半部分感到滿意。我會回來並使用Redux來實現它。 – kushalvm