在我的 React 应用程序(版本 15.5.4)中,我的一个组件中的输入字段收到以下警告:
Warning: 'value' prop on 'input' should not be null. Consider using the empty string to clear the component or 'undefined' for uncontrolled components.
参考以下jsx:
<label>Description<br />
<input
type="text"
name="description"
value={this.state.group.description}
onChange={this.handleChange}
maxLength="99" />
</label>
但我对此感到困惑,因为 的值在我的构造函数中this.state.group.description
设置""
:
this.state = {
"group": {
"name": "",
"description": ""
}
}
更让我震惊的是另一个输入字段引用了this.state.group.name
,但没有发出警告:
<label>Name *<br />
<input
type="text"
name="name"
value={this.state.group.name}
onChange={this.handleChange}
maxLength="99"
required="required"
autoFocus />
</label>
我在这里错过了什么吗?据我所知,我已经将这两个值的初始状态设置为空字符串,并在两个输入字段中以相同的方式引用它们,但一个抛出警告,一个没有。
这不是世界末日......该应用程序运行良好,但我真的很想了解为什么会发生这种情况并使我的应用程序运行正常。
这是handleChange
:
handleChange(event) {
const attribute = event.target.name
const updatedGroup = this.state.group
updatedGroup[attribute] = event.target.value
this.setState({"group": updatedGroup})
}