Angular 2返回html而不是字符串

Angular 2 return html instead of string

本问题已经有最佳答案,请猛点这里访问。

假设我有一个这样的test财产:

1
2
3
4
5
export class SomeComponent implements OnInit {

    testing = 'Just testing';

}

我在test.component.html中添加了以下行:

1
{{ testing }}

输出为Just testing。我要它返回只是测试。我该怎么做?


您可以使用innerHTML进行以下操作:

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