상속 및 의존성 주입 나는 모든 서비스를 받을 수 있는 angular2 컴포넌트 세트를 가지고 있다.처음에는 슈퍼클래스를 만들어 거기에 서비스를 투입하는 것이 가장 좋다고 생각했습니다.내 컴포넌트 중 어떤 것이든 슈퍼클래스를 확장할 수 있지만 이 접근방식은 작동하지 않습니다. 간단한 예: export class AbstractComponent { constructor(private myservice: MyService) { // Inject the service I need for all components } } export MyComponent extends AbstractComponent { constructor(private anotherService: AnotherService) { super(..