如何将html绑定到Angular 2.0

How to bind html into Angular 2.0

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

在Angular 1中,绑定工作类似于ng bind html="htmlvalue"

如何在Angular2.0中绑定HTML


我认为您可以使用innerHtml属性并在其上绑定一些内容:

1
<span [innerHtml]="someHtmlContent"></span>

这是一个示例:

1
2
3
4
5
6
7
8
9
10
11
@Component({
  selector: 'first-app',
  template: `
    <span [innerHtml]="value"></span>
  `
})
export class AppComponent {
  constructor(private http:Http) {
    this.value = 'test';
  }
}