In angular2+ is possible to inherit proprieties and methods from parent componet in this way:
(在angular2 +中,可以通过以下方式从父组件继承属性和方法:)
export class yourComponent extends yourBaseComponent
.
(export class yourComponent extends yourBaseComponent
。)
You can use all proprieties and methods of yourBaseComponent in yourComponent through this, as they are properties and method of yourComponent and so it is possibile to use it in HTML template of yourComponent too.
(您可以通过它在yourComponent中使用yourBaseComponent的所有属性和方法,因为它们是yourComponent的属性和方法,因此也可以在yourComponent的HTML模板中使用它。)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…