当我尝试将我的数据显示为text-html时,它以HTML格式显示,但是当我刷新页面时,我收到此错误:
[$ sce:unsafe]试图在安全的上下文中使用不安全的值.
这是我的AngularJS代码:
data.attributes.task_name = $sce.trustAsHtml(data.attributes.task_name);
Run Code Online (Sandbox Code Playgroud)
HTML
<span ng-bind-html="taskdata.attributes.task_name" data-html="true" title="{{reminder.attributes.message}}"></span>
Run Code Online (Sandbox Code Playgroud)