私が使用している 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>
もちろんいつすべきか
これが応答です