我有一个getter和setter属性,我想在Angular的ngOnit中使用它。
打字稿访问器看起来像这样:
if (modelValue) {
}
我有这样的ngOnit:
ngOnInit(): void {
}
,构造函数如下:
}
但是现在我收到此错误:
答案 0 :(得分:0)
您不是管道的对象。
constructor(readonly textResourceService: TextResourceService,readonly route: ActivatedRoute) {
super(textResourceService, route);
}
应该帮助。