在React中为复选框状态分配默认值check =“ =” checked“后,我无法更新复选框状态。
var rCheck = React.createElement('input',
{type: 'checkbox', checked:'checked', value: true},
'Check here');
分配后checked="checked"
,我无法通过单击取消选中/选中来交互复选框状态。
我将状态设置为any []类型。并在构造函数中将状态设置为null。
在输入元素中
this.onServiceChange(e)} /> this.onServiceChange(e)} /> this.onServiceChange(e)} /> this.onServiceChange(e)} />
一段时间后,我想通了。以为这可能对大家有帮助:)