我想在输入字段中设置默认值。我试图在构造函数中设置它。但我无法做到。
constructor() {
super();
this.favorTitle = "default value";
}
onTextChange = () => {
console.log(this.favorTitle.value);
}
<input type="text" ref={
(input) => {
this.favorTitle = input;
}
}
onChange={this.onTextChange} />