angularjs解决方案之 Error: [$sce:unsafe]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs解决方案之 Error: [$sce:unsafe]相关的知识,希望对你有一定的参考价值。
angularjs中无法直接使用ng-bind-html:
<div ng-bind-html="item.text | highlight: $select.search"></div>
1.app.js中添加
angular.module(‘epcui‘, [ ‘ngSanitize‘// ngSanitize ])
2.html中添加sanitize
<script src="js/angular/angular-sanitize.js"></script>
借鉴:http://www.cnblogs.com/yshyee/p/4272180.html
本文出自 “蛋蛋” 博客,请务必保留此出处http://yh118.blog.51cto.com/8638176/1923807
以上是关于angularjs解决方案之 Error: [$sce:unsafe]的主要内容,如果未能解决你的问题,请参考以下文章
AngularJS中Error: [$rootScope:inprog]的解决办法
angularjs启动项目报ERROR in AppModule is not an NgModule解决方法
AngularJS入门教程之与服务器(Ajax)交互操作示例