0
我在我的AngularJS應用程序中使用CKEditor。當我嘗試顯示我從TextEditor
保存的文本時,它不採用該樣式。例如,如果我想要顯示它會出現一個句子:顯示CKEditor在Angular模板中的原始HTML標記
<p>How old are you</p>
代替:
幾歲我嘗試使用
ng-bind
你
:
<div ng-bind="Item.Header"></div>
和常規裝訂方法:
<h3>{{Item.Header}}</h3>
但是這兩種方法都不起作用。有這個問題的解決方案嗎?
可能重複http://stackoverflow.com/questions/15754515/how-to-render-html-with-angular-templates – oleq
NG綁定在1.2 rc1中刪除了-html-unsafe – Cherniv