Angular 2返回html而不是字符串

时间:2016-06-15 18:30:08

标签: html angular

我们假设我有一个test属性:

export class SomeComponent implements OnInit {

    testing = '<strong>Just testing</strong>';

}

我将test.component.html添加到此行:

{{ testing }}

输出为<strong>Just testing</strong>。我希望它返回 Just Testing 。我怎么能这样做?

1 个答案:

答案 0 :(得分:12)

您可以使用innerHTML

<span [innerHTML]="testing"></span>