我正在使用 ng-bootstrapngbDate
对象。我想将其转换为标准Date
对象。你怎么做到这一点?
这是.ts
文件的相关部分:
import {NgbCalendar, NgbDate} from "@ng-bootstrap/ng-bootstrap";
fromDate: NgbDate;
toDate: NgbDate;
constructor(calendar: NgbCalendar) {
this.fromDate = calendar.getToday();
this.toDate = calendar.getNext(calendar.getToday(), 'd', 10);
}