0
我在我的角度項目中有一個被動式窗體,我嘗試從數據庫的edit
動作中填充它。實際上,該值設置正確,但該值不會顯示在type=datetime-local
的輸入字段中。對於反應形式的代碼是:填充<intput type = datetime-local>並在輸入字段中顯示它的值
this.client = new FormGroup({
'desired_installation_date': new FormControl(this.clientData['desired_installation_date'], Validators.required),
//other controls
});
和HTML格式:
<form [formGroup]="client" (ngSubmit)="onFormSubmit()" *ngIf="client">
<input type="datetime-local" class="form-control" formControlName="desired_installation_date">
<!--Other inputs and submit button-->
</form>
這裏是如何看起來像一個觀點,但是,該值設置:
console.log(this.clientData['desired_installation_date']);
的輸出是2017-08-10T15:00:00.000Z
在輸入本身中顯示輸入值的方法是什麼?謝謝。