• 【转载】AngularJS 用$sce服务来过滤HTML标签,解决无法正确显示后台传递的html标签


    angular js的强大之处之一就是他的数据双向绑定这一牛B功能,我们会常常用到的两个东西就是ng-bind和针对form的ng-model。但在我们的项目当中会遇到这样的情况,后台返回的数据中带有各种各样的html标签。如:

    $scope.currentWork.description = “hello,<br><b>今天我们去哪里?</b>”

    我们用ng-bind-html这样的指令来绑定,结果却不是我们想要的。是这样的

    hello,<br><span>今天我们去哪里?</span>

    怎么办呢?

    对于angular 1.2一下的版本我们必须要使用$sce这个服务来解决我们的问题。所谓sce即“Strict Contextual Escaping”的缩写。翻译成中文就是“严格的上下文模式”也可以理解为安全绑定吧。来看看怎么用吧。

    controller code:

    Controller code (controller.js):
    $http.get('/api/work/get?workId=' + $routeParams.workId).success(function (work) {$scope.currentWork = work;});

    HTML code:

    <p> {{currentWork.description}}</p>

    我们返回的内容中包含一系列的html标记。表现出来的结果就如我们文章开头所说的那样。这时候我们必须告诉它安全绑定。它可以通过使用$ sce.trustAsHtml()。该方法将值转换为特权所接受并能安全地使用“ng-bind-html”。所以,我们必须在我们的控制器中引入$sce服务

    controller('transferWorkStep2', ['$scope','$http','$routeParams','$sce', function ($scope,$http, $routeParams, $sce) {
        $http.get('/api/work/get?workId=' + $routeParams.workId)
        .success(function (work) {
            $scope.currentWork = work;
            $scope.currentWork.description = $sce.trustAsHtml($rootScope.currentWork.description);
        });

    html code:

    <p ng-bind-html="currentWork.description"></p>

    这样结果就完美的呈现在页面上了:

    hello

    今天我们去哪里?

    咱们还可以这样用,把它封装成一个过滤器就可以在模板上随时调用了

    app.filter('to_trusted', ['$sce', function ($sce) {
        return function (text) {
            return $sce.trustAsHtml(text);
        };
    }]);

    html code

    <p ng-bind-html="currentWork.description | to_trusted"></p>

    转载自:http://www.w3cscript.com/Angular/2014-11-26/1.html

  • 相关阅读:
    Gorm(表的操作以及索引的操作)
    推荐几个查看 Go 汇编源码的工具使用技巧
    使用 Go 剖析Linux容器实现原理
    Kubelet failed to "CreatePodSandbox" for coredns; failed to set bridge addr: could not add ip addr to "cni0": permission denied
    antdesignmobile学习框架
    infra容器和用户容器的关系
    go bufio缓存原理
    详解 gRPC 客户端长连接机制实现
    SpringBoot进阶教程(七十四)整合ELK
    hive通过nginx实现HA高可用
  • 原文地址:https://www.cnblogs.com/superman66/p/4819206.html
Copyright © 2020-2023  润新知