angularjs解决方案之 Error: [$sce:unsafe]

前端之家收集整理的这篇文章主要介绍了angularjs解决方案之 Error: [$sce:unsafe]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

angularjs中无法直接使用ng-bind-html:

<divng-bind-html="item.text|highlight:$select.search"></div>

1.app.js中添加

angular.module('epcui',[
'ngSanitize'//ngSanitize
])

2.html中添加sanitize

<scriptsrc="js/angular/angular-sanitize.js"></script>



借鉴:http://www.cnblogs.com/yshyee/p/4272180.html

原文链接:https://www.f2er.com/angularjs/147314.html

猜你在找的Angularjs相关文章