nav*_*ini 8 ng-bind-html angular
在角度1绑定工作,如ng-bind-html ="htmlValue"
如何在Angular 2.0中绑定html
Thi*_*ier 27
我认为您可以使用该innerHtml属性并在其上绑定一些内容:
<span [innerHtml]="someHtmlContent"></span>
Run Code Online (Sandbox Code Playgroud)
这是一个示例:
@Component({
selector: 'first-app',
template: `
<span [innerHtml]="value"></span>
`
})
export class AppComponent {
constructor(private http:Http) {
this.value = '<strong>test</strong>';
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
17467 次 |
| 最近记录: |