AngularJS在双花括号表示法中呈现HTML

前端之家收集整理的这篇文章主要介绍了AngularJS在双花括号表示法中呈现HTML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有包含HTML的JSON变量.

通过执行:{{source.HTML}} Angular显示& lt;和& gt;而不是<和>.

我可以做些什么让Angular呈现实际的HTML?

更新:
这是我的控制器:

app.controller('objectCtrl',['$scope','$http','$routeParams',function($scope,$http,$routeParams) {

    var productId = ($routeParams.productId || "");

    $http.get(templateSource+'/object?i='+productId)
       .then(function(result) {
          $scope.elsevierObject = {};
          angular.extend($scope,result.data[0]);
        });
  }]);

在我的HTML中,我可以使用:

<div>{{foo.bar.theHTML}}</div>
是否要显示HTML(例如< b> Hello< / b>)或呈现HTML(如Hello)?

>如果要显示它,花括号就足够了.但是,如果您拥有的html具有html实体(例如& lt; stuff),则需要手动取消它,请参阅this SO question.
>如果要渲染它,则需要使用ng-bind-html指令而不是curcly括号(其中,FYI,是ng-bind指令的快捷方式).你需要告诉Angular注入该指令的内容是安全的,使用$sce.trustAsHtml.

请参阅以下两种情况的示例:

angular.module('test',[]).controller('ctrl',$sce) {
  $scope.HTML = '<b>Hello</b>';
  
  $scope.trust = $sce.trustAsHtml;
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="test" ng-controller="ctrl">
  <div>Show: {{HTML}}</div>
  <div>Render: <span ng-bind-html="trust(HTML)"></span></div>
</div>
原文链接:https://www.f2er.com/angularjs/143750.html

猜你在找的Angularjs相关文章