AngularJS数据绑定显示html

时间:2016-08-11 10:51:06

标签: angularjs

当我将范围变量附加到div时,它会显示html标记。试图解决它。

控制器

$scope.homeBox = response.data[$item];  


<div ng-bind="homeBox" ng-bind-html="myService.body | limitTo: limit"></div>

显示如下 enter image description here

2 个答案:

答案 0 :(得分:0)

如果必须绑定html

,请使用ng-bind-html
<div ng-bind-html="homeBox" ng-bind-html="myService.body | limitTo: limit"></div>

但是你不能在一个标签中有两个ng-bind-html。第一个将占主导地位。因此,最好为两者使用单独的div。

答案 1 :(得分:0)

我找到了溶剂。 我不应该使用两个binds.Instead我使用了我以前用来调用内容的相同绑定。

$scope.myService.body  = response.data[$item];