web-dev-qa-db-ja.com

HTMLをAngular 2.0にバインドする方法

angular 1では、バインディングはng-bind-html = "htmlValue"のように機能します

HTMLをAngular 2.0でバインドする方法

10
navin saini

innerHtml属性を使用して何かをバインドできると思います。

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

ここにサンプルがあります:

@Component({
  selector: 'first-app',
  template: `
    <span [innerHtml]="value"></span>
  `
})
export class AppComponent {
  constructor(private http:Http) {
    this.value = '<strong>test</strong>';
  }
}
32