我的问题是,当我使用 innerHtml binding-angular2时,会删除所有的 style 属性。这对我来说很重要,因为在我的 Task-html 中,所有样式都是在服务器端生成的。 例如:
@Component({
selector: 'my-app',
template: `
<input type="text" [(ngModel)]="html">
<div [innerHtml]="html">
</div>
`,
})
export class App {
name:string;
html: string;
constructor() {
this.name = 'Angular2'
this.html = "<span style=\"color:red;\">1234</span>";
}
}
但是在 DOM 中我只看到1234,而且这个文本不是红色的。
Http://plnkr.co/edit/uqjofmkl9owmrij38u8d?p=preview
谢谢!