我正在尝试使用Angular2在vaadin-date-picker中动态设置默认日期。在我的项目中实现这些任务时,它显示了一个例外。
我的代码的PFA和错误
谢谢。
点击异常图片:Exception Image
点击代码图片Code Image
答案 0 :(得分: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())}`;
}