Angular 2 DRY:简单模板的小语法

时间:2016-03-16 12:30:47

标签: javascript templates angular

所以我想要包含大而不复杂的html,它只包含1个变量item,它应该从父级继承。

是否有一些简单的方法,而不是必须为它创建一个完整的组件?

<div>Lots of nodes here, not just one, and also some item attributes {{item.url}}</div>

家长会在几个地方加入此模板。

所需的语法数量最少?

1 个答案:

答案 0 :(得分:0)

如何使用linkvariable value显示已解析的 HTML

<div [innerHTML]="myHtml"></div>

export class ParentCmp {

   myVal:string="micronyks";
   myHtml="<a href='http://google.com'>Google.com</a>" + this.myVal + " <p>Long text</p>";

}