输入类型日期有问题。我想绑定组件中的数据。这是我的领域:

<div class="col-md-6">
    <label for="dateOfReport">Data zgłoszenia błędu:</label>
    <input type="date" formControlName="dateOfReport" id="dateOfReport" class="form-control" [value]="report.dateOfReport | date:'dd.MM.yyyy'"> {{report.dateOfReport | date:'dd.MM.yyyy'}}
  </div>


这是变量dateOfReport的外观:

new Date().toJSON().slice(0, 10)


我哪里失败了? {{..}}显示良好的日期,但我的字段未将其设为默认日期。

最佳答案

使用反应式表单时,不应将数据直接绑定到控件,而应使用FormGroup的setValue()或patchValue()。

关于javascript - Angular 5将日期绑定(bind)到字段( react 形式),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49976356/

10-13 03:19