2017-08-03 68 views
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> 

這裏是如何看起來像一個觀點,但是,該值設置:

enter image description here

console.log(this.clientData['desired_installation_date']);的輸出是2017-08-10T15:00:00.000Z

在輸入本身中顯示輸入值的方法是什麼?謝謝。

回答

0

解決方案很簡單,我只需要split的值如:this.clientData['desired_installation_date'].split('.')[0]。在那之後,輸入字段被賦值。

相關問題