0

我正在尝试使用 Angular2 在 vaadin-date-picker 中动态设置默认日期。在我的项目上实施这些任务时,它显示了一个异常。

我的代码和错误的 PFA

谢谢你。

点击查看异常图片:异常图片
点击查看代码图片代码图片

4

1 回答 1

0

答案在这里:https ://vaadin.com/forum#!/thread/13790736

谢谢

    pad(i: number) {
  return i < 10 ? '0' + i : i;
}

ngOnInit() {
  const selectedDate = new Date();
  this.birthday = `${selectedDate.getFullYear()}-${this.pad(selectedDate.getMonth() + 1)}-${this.pad(selectedDate.getDate())}`;
}
于 2016-08-11T04:14:40.663 回答