所以我想要包含大而不复杂的html,它只包含1个变量item
,它应该从父级继承。
是否有一些简单的方法,而不是必须为它创建一个完整的组件?
<div>Lots of nodes here, not just one, and also some item attributes {{item.url}}</div>
家长会在几个地方加入此模板。
所需的语法数量最少?
答案 0 :(得分:0)
如何使用link
和variable 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>";
}