标签: reactjs
我有输入组件和复选框组件,它们在重复x次的其他组件中都很接近。当我的复选框被选中时,如何更改输入组件中的值?
resetValue(){ this.props.value = 45; } return( <div> <InputComponent value={this.props.value}/> <CheckboxComponent onChange={this.resetValue}/> </div> )