我正在使用Angular框架在我的應用程序中填充我的數據。如何在我的應用程序中顯示html數據?
我的數據包含HTML標記
這件事情就像
$scope.test = <p>this is a test<?p><strong>Bold text here...</strong>
在我的HTML
<div>
{{test}}
</div>
瀏覽器的顯示確切的文本 '<p>this is a test</p> <strong>Bold text here...</strong>
' 的輸出。我希望它解析html標記並顯示'
這是一個測試
粗體文本在這裏...。這可能嗎?
非常感謝!
您使用的是什麼版本的Angular? – Dai
版本是1.2 – Links