我在下面使用一个变量。
var newInput = {
title: this.inputTitle.value,
entry: this.inputEntry.value
};
这是我的输入字段使用的。
<input type="text" id="inputname" className="form-control" ref={el => this.inputTitle = el} />
<textarea id="inputage" ref={el => this.inputEntry = el} className="form-control" />
<button className="btn btn-info" onClick={this.sendthru}>Add</button>
激活后,{this.sendthru}
我想清除输入字段。但是,我不确定如何做到这一点。
此外,如本示例所示,有人向我指出我应该将ref
属性用于输入值。我不清楚的是拥有{el => this.inputEntry = el}
. el
在这种情况下有什么意义?