1
我嘗試爲基類定義了一個彈出窗口(帶有邊框,標題和關閉按鈕),並且在子類中定義了窗口的內部,並且模板Angular 2 - 基類包含子類模板
我讀了許多繼承的教程,但每次的子類覆蓋了基類的模板而不是beeing注入它
我應該使用繼承裏面?聚合?指令?在這種情況下,我可以傳遞一個組件類作爲指令的參數嗎?
基類:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-popup-window',
templateUrl: './popupWindow.component.html',
styleUrls: ['./popupWindow.component.css'],
})
export class PopupWindow implements OnInit {
constructor(
) { }
ngOnInit() {
}
}
基本模板:
<div class="popupWindowMainDiv">
<!-- here should be injected child class stuffs -->
</div>
子類:
import { PopupWindow } from '../popupWindow/popupWindow.component';
export class ProductSelectorComponent extends PopupWindow implements OnInit {
感謝
不錯,我給它一個嘗試,THX – phil1234
它的作品,感謝您的時間花在一個plunkr;! - ) – phil1234
請註冊並接受答案 –