Angular 2 return html instead of string
本问题已经有最佳答案,请猛点这里访问。
假设我有一个这样的
1 2 3 4 5 | export class SomeComponent implements OnInit { testing = 'Just testing'; } |
我在test.component.html中添加了以下行:
1 | {{ testing }} |
号
输出为
您可以使用
1 | <span [innerHTML]="testing"></span> |