我ng-bind-html
用来清理directive
模板中的 HTML:
<h2><a href="{{ post.url }}" ng-bind-html="post.title"></a></h2>
编译后的输出是正确的,除了一个例外,它没有清理打印为â€tm
. 该页面被编码为charset='utf-8'
.
我ng-bind-html
用来清理directive
模板中的 HTML:
<h2><a href="{{ post.url }}" ng-bind-html="post.title"></a></h2>
编译后的输出是正确的,除了一个例外,它没有清理打印为â€tm
. 该页面被编码为charset='utf-8'
.
我不确定我是否理解你的问题,但为什么不尝试用斜线转义撇号?喜欢
\"
或者
\'
ng-bind-html
可以满足您的需求,但要超越基本功能,您应该调查$sce 服务