在角度1绑定工作,如ng-bind-html ="htmlValue"
如何在Angular 2.0中绑定html
我认为您可以使用该innerHtml
属性并在其上绑定一些内容:
这是一个示例:
@Component({
selector: 'first-app',
template: `
`
})
export class AppComponent {
constructor(private http:Http) {
this.value = 'test';
}
}