我正在使用angularjs。在這裏,我有一個字符串從數據庫中提取,它是在HTML表單這樣如何在angularjs中實現html格式的字符串
$scope.data = '<p>this is first line </br> this is second line</p>';
,當我dispaly它像
{{$scope.data}}
它實際上來,因爲它是沒有格式化像
<p>this is first line </br> this is second line</p>
HTML
但我想作爲
this is first line
this is second line
使用[ng-bind-html](https://docs.angularjs.org/api/ng/directive/ngBindHtml) – charlietfl 2015-04-04 12:55:40