在我的超类中,我必须注入translateservice,因为我必须翻译一些标准的消息通知/警报。 所以我必须将translateservice添加到扩展我的超类的所有类中。
超
constructor(public endPointUrlService: EndpointUrlService, public translate: TranslateService,
protected route: ActivatedRoute, protected router: Router) {
}
usercomponent
export class UserListComponent extends Superclass
constructor(
private userService: UserService,
router: Router,
endPointUrlService: EndpointUrlService,
route: ActivatedRoute,
translate: TranslateService) {
super(endPointUrlService, translate, route, router)
}
在注入翻译服务之前,我现在没有任何错误:
ReferenceError:未定义ng
和
TypeError:无法读取属性' geAdapter'未定义的