我有两个输入,我想要一个init值,例如用户时间。
<input type="time" id="horaFinal" ref={(hora_final) => this.hora_final = hora_final} />
<input type="date" id="fechaFinal" ref={(fecha_final) => this.fecha_final = fecha_final} />
我可以使用此代码var yearInit = this.fecha_inicial.value
获取值
但我不能把init值,我在componentWillMout,componentDidMount,构造函数中尝试使用this.fecha_inicial.value= 01/02/2017
,但不能正常工作