0
HTML代碼TS文件格式化其通過自舉ngbDatepicker選擇在角2
<form novalidate [formGroup]="udpateObj">
<div class="form-group">
<label for="HDresolutionDate">Resolution Date:</label>
<input type="text" id="date" formControlName="DateP" ngbDatepicker
#d1="ngbDatepicker">
</div>
<form>
代碼中的時間
let dateVal = backendDate;// am getting date obj from backend and
this.udpateObj= new FormGroup({
DateP: new FormControl(dateVal)
});
我需要顯示其從後端來的時間或者從dd/mm/yyyy格式的日期選擇器中選擇。
必須有您使用日期在日期選擇器的格式選項。如果沒有什麼,那麼你必須改變手動形式的日期使用javascript –
有沒有原因你不會使用'NgbDateParserFormatter'?根據他們的文檔。 https://ng-bootstrap.github.io/#/components/datepicker – silentsod