Unescape然后清理Angular中的数据

时间:2016-02-04 20:10:31

标签: angularjs ngsanitize

我使用的API会自动从用户输入中转义任何字符串(应该如此)。我很难找到最好的方法来浏览/清理数据然后在我的页面上使用。指令是一条去这里的好途径吗?

示例回复

<b>This is the response!</b><br><br><i>It comes in italic, too.</i>

模板

<div ng-bind-html="groupsDetailCtrl.group.information.text"></div>
<!-- Or pass in to directive? -->
<group-information content="groupsDetailCtrl.group.information.text"></group-information>
页面上的

当前输出就是这样的

<b>This is the response</b>

当然应该是

这是回复

0 个答案:

没有答案