我是Angular 6的新手。使用以下代码:
export class DateComponent implements OnInit {
currentDate: string = new Date().toDateString;
constructor() { }
ngOnInit() {
}
}
我遇到以下错误,但我不知道是什么原因引起的。
错误TS2322:类型'()=>字符串'不能分配给类型'字符串'。
答案 0 :(得分:1)
您应该调用函数,而不要分配函数对象。最后添加()
应该可以解决
currentDate: string = new Date().toDateString();