ng-bootstrap Datepicker 将导航年份默认为当前日期之前的 10 年

问题描述

我相信认行为是将年份导航认为当前年份,以 10 年之前作为最短日期,向前 10 年作为最长日期。我的日期选择器认为意识年,这意味着它应该向用户显示 2021 年,但它向用户显示 2011 年。我无法理解我哪里出错了,因为我的代码紧跟 ng-bootstrap 上的示例网站。

enter image description here

这是我的代码

ideviceinfo | awk '/com.apple.System.boot-nonce/{print $2}'

-- HTML

@Component({
  selector: 'app-dashboard',templateUrl: './dashboard.component.html',styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
  hoveredDate: NgbDate | null = null;
  reportRequest: ReportsSearchRequest;
  isLoading: boolean = false;
  error: string;
  Now: Date = new Date();
  startDate: NgbDate | null;
  endDate: NgbDate | null;

  constructor(private calendar: NgbCalendar,public formatter: NgbDateParserFormatter) {
    this.startDate = new NgbDate(this.Now.getFullYear(),this.Now.getMonth() + 1,1);
    this.selectThisMonth();
  }
  ngOnInit(): void {
    this.init();
  }

  selectThisMonth(): void {
    const year: number = this.Now.getFullYear();
    const month: number = this.Now.getMonth() + 1;
    const day: number = new Date(year,month,0).getDate();
    this.endDate = new NgbDate(year,day);
  }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)