1

ng-bind-html用来清理directive模板中的 HTML:

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

编译后的输出是正确的,除了一个例外,它没有清理打印为â€tm. 该页面被编码为charset='utf-8'.

4

2 回答 2

1

我不确定我是否理解你的问题,但为什么不尝试用斜线转义撇号?喜欢

\"

或者

\'
于 2014-02-06T22:54:59.003 回答
0

ng-bind-html可以满足您的需求,但要超越基本功能,您应该调查$sce 服务

于 2014-02-06T18:54:02.090 回答