代码之家  ›  专栏  ›  技术社区  ›  Nancy

如何使用我的日期选择器填充默认日期

  •  -1
  • Nancy  · 技术社区  · 6 年前

     <my-date-picker name="outOldestDate" class="form-control required" placeholder="Oldest" [options]="myDatePickerOptions formControlName="outOldestDate"></my-date-picker>
    
    public myDatePickerOptions: IMyDpOptions = {
        // other options...
        dateFormat: 'yyyy-mm-dd'
    };
    
    
        ngOnInit() {
            this.accountReceivableForm = this.formBuilder.group({
              outOldestDate: [null, Validators.required]
            });
    this.getDate();
    }
    
    
    getDate(): void {
    //service call happens here
     resultArray => {
            this.ng4LoadingSpinnerService.hide();
            console.log(resultArray);
            this.ARHospitalListData = resultArray;
            this.outOldestDate = this.ARHospitalListData.dischargeDate.fromDate;
    
    }
    
    }
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   Nancy    6 年前
     this.outOldestDate = { formatted: this.ARHospitalListData.dischargeDate.fromDate };
    

    添加格式化解决了此问题