''我在我的 Angular 应用程序中使用 PrimeNg 的日历。我正在使用多项选择模式并将日历绑定到数据库中的日期数组。日历从数据库范围内的最新日期开始,但我希望它始终以今天的日期开始,然后用户可以前后导航以查看数据库中先前选择的日期。我设置了 defaultDate 但它没有任何区别。
请帮忙。
谢谢,
我的html:
<p-calendar [(ngModel)]="myDates" selectionMode="multiple" [inline]="inline" selectOtherMonths="true" [defaultDate]="defaultDate"></p-calendar>
我的代码:
public myDates: Date[] = [];
public defaultDate: Date = new Date();
constructor()
{
this.myDates.push(new Date('01-01-2017'));
this.myDates.push(new Date('01-02-2017'));
this.myDates.push(new Date('01-07-2017'));
}