标签: html angularjs ng-bind-html ngsanitize
我在UI上渲染图片时遇到问题,我使用了ng-bind-html。我正在获取文本,但图像并没有变得很糟糕。
ng-bind-html
在角度 -
$scope.conversation.message= $sce.trustAsHtml(response);
在HTML中 -
<div ng-bind-html="conversation.message" class="coversation-div"></div>
我得到的只是文字,但回复是
Response
请告诉我如何用文字显示图像。 提前谢谢。