エラーが報告されていないため何が間違っているのか分かりません。angular2 [innerHtml]を動作させる方法
私はコンポーネントクラス
import { Component, OnInit, ViewContainerRef } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
testhtml = "<p>Hello world</p>";
constructor(){}
}
}
そして、私のテンプレートファイル内を持って、私はこのような何か:
<div class="blog-post">[innerHtml]="testhtml"</div>
をしかし、これは動作するようには思えません。私がインポートする必要がある何か他にありますか?私は、角度cliの "バージョン" を使用しています
: "1.0.0-beta.26を"、
「
」<=その要素の内容ではない属性です。 – Igorこれは私のために働いた: http://stackoverflow.com/a/43862386/1048800 – jgatjens