深入理解AngularJS中的ng-bind-html指令和$sce服务
程序员文章站
2022-06-30 18:57:41
前言
angularjs的强大之处之一就是他的数据双向绑定这一牛b功能,我们会常常用到的两个东西就是ng-bind和针对form的ng-model。
但在我们的项目...
前言
angularjs的强大之处之一就是他的数据双向绑定这一牛b功能,我们会常常用到的两个东西就是ng-bind和针对form的ng-model。
但在我们的项目当中会遇到这样的情况,后台返回的数据中带有各种各样的html标签。
如:
$scope.currentwork.description = “hello,<br><b>今天我们去哪里?</b>”
我们用ng-bind-html这样的指令来绑定,结果却不是我们想要的。
是这样的
hello, 今天我们去哪里?
怎么办呢?
对于angular 1.2一下的版本我们必须要使用$sce这个服务来解决我们的问题。所谓sce即“strict contextual escaping”的缩写。翻译成中文就是“严格的上下文模式”也可以理解为安全绑定吧。
来看看怎么用吧。
controller code:
$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>
总结
以上就是关于angularjs中的ng-bind-html指令和$sce服务的全部内容了,希望对大家的学习或者工作带来一定的帮助,如果有问题可以留言交流。
上一篇: 人工智能20年内取代近半职业?
下一篇: 小米新机红米5/5 Plus 现身海外版
推荐阅读
-
深入理解Angularjs中的$resource服务
-
深入理解AngularJS中的ng-bind-html指令
-
深入理解AngularJS中的ng-bind-html指令和$sce服务
-
深入理解Angularjs中的$resource服务
-
深入理解AngularJS中的ng-bind-html指令和$sce服务
-
深入理解AngularJS中的ng-bind-html指令的图文代码详解
-
深入理解AngularJS中的ng-bind-html指令
-
深入了解Angularjs中的视图和指令
-
深入理解AngularJS中的ng-bind-html指令的图文代码详解
-
深入了解Angularjs中的视图和指令