微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决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 举报,一经查实,本站将立刻删除。