문제

I'm using ng-bind-html to sanitize HTML in a directive template:

<h2><a href="{{ post.url }}" ng-bind-html="post.title"></a></h2>

The compiled output is correct, with one exception, it's not sanitizing the HTML apostrophe which is being printed as â€tm. The page is encoded as charset='utf-8'.

도움이 되었습니까?

해결책 2

ng-bind-html does a lot for your needs, but to go beyond the basic you should investigate the $sce service

다른 팁

I'm not really sure if I understand your question but why don't try escaping the appostrophe with slash? Like

\"

or

\'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top