admin管理员组文章数量:1345437
I am trying to render some unsafe HTML (basically a HTML snippet with some inline styling) and have the following code in my view:
<div ng-repeat="snippet in snippets">
<div ng-bind-html="snippet.content"></div>
</div>
All my styling gets removed...
I've heard of people using ngBindHtmlUnsafe however I couldn't find a reference to it and simply putting ng-bind-html-unsafe doesn't render anything.
Any help would be appreciated.
I am trying to render some unsafe HTML (basically a HTML snippet with some inline styling) and have the following code in my view:
<div ng-repeat="snippet in snippets">
<div ng-bind-html="snippet.content"></div>
</div>
All my styling gets removed...
I've heard of people using ngBindHtmlUnsafe however I couldn't find a reference to it and simply putting ng-bind-html-unsafe doesn't render anything.
Any help would be appreciated.
Share Improve this question asked Dec 13, 2013 at 4:25 alexs333alexs333 12.6k11 gold badges54 silver badges91 bronze badges 2- What AngularJS version are you using? – Klaster_1 Нет войне Commented Dec 13, 2013 at 4:29
- You need to include the html string you're trying to use also. – m59 Commented Dec 13, 2013 at 4:31
2 Answers
Reset to default 8The ng-bind-html-escape
was removed in AngularJs 1.2.
To achieve the same effect I would advise you to create a filter to trust the resource (you should include the $sce module ):
app.filter('unsafe', function($sce) {
return function(val) {
return $sce.trustAsHtml(val);
}; });
Usage:
<ELEMENT ng-bind-html="htmlValue | unsafe"></ELEMENT>
You shouldn't forget to include the ngSanitize as the app dependency:
angular.module('app', ['ngSanitize'])
Cheers.
You can bypass it using $sce.trustAsHtml
. See documentation
self.snippet.content = $sce.trustAsHtml('some html');
本文标签: javascriptAngularJSngBindHtml and 39unsafe39 htmlStack Overflow
版权声明:本文标题:javascript - AngularJS - ngBindHtml and 'unsafe' html - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782659a2538114.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论