상속 및 준비 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(); // This gives an e..