欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解angular用$sce服务来过滤HTML标签

程序员文章站 2022-09-02 17:18:26
angular js的强大之处之一就是他的数据双向绑定这一牛b功能,我们会常常用到的两个东西就是ng-bind和针对form的ng-model。但在我们的项目当中会遇到这样...

angular js的强大之处之一就是他的数据双向绑定这一牛b功能,我们会常常用到的两个东西就是ng-bind和针对form的ng-model。但在我们的项目当中会遇到这样的情况,后台返回的数据中带有各种各样的html标签.对于angular 1.2一下的版本我们必须要使用$sce这个服务来解决我们的问题。它可以通过使用$sce.trustashtml()。该方法将值转换为特权所接受并能安全地使用“ng-bind-html”。

controller('healtheducationdetailctrl', ['$sce','$scope', 'storage', '$state', 'homeservice','$stateparams','$ionictabsdelegate',
  function ($sce,$scope, storage, $state, homeservice,$stateparams,$ionictabsdelegate) {
   $scope.$on('$ionicview.beforeenter', function() {
    //关闭所有的tab选项卡
    $ionictabsdelegate.showbar(false);
   });

   //保证健康教育详情页面可以显示各自的标题
   $scope.title=$stateparams.article_title;
   var article_id=$stateparams.article_id;
   var param={article_id:article_id};
   homeservice.gethealtharticledetail(param);
   //加载健康教育详情
   $scope.healtharticledetail=[];
   $scope.$on('homeservice.gethealtharticledetail',function (event, data) {
    $scope.healtharticledetail=data;
    //richtextreplace是解析html标识符
    // $scope.trusthtml=storage.richtextreplace($scope.healtharticledetail.article_contents);
    $scope.trusthtml=$sce.trustashtml($scope.healtharticledetail.article_contents);
   })

   $scope.$on('$ionicview.beforeleave', function() {
    //打开所有tab选项卡
    $ionictabsdelegate.showbar(true);
   });
  }])

html:

<ion-view view-title="{{title}}" ng-view-title="title">
 <ion-content >
  <div style="width: 100%; padding: 10px 15px;">
   <div ng-bind-html="trusthtml"></div>
  </div>
 </ion-content>
</ion-view>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。