请找到plnkr
我想显示一些html预览。 html已经在服务器上进行了清理(例如:"<b>HELLO</b>"
)。如何显示html表单。在示例中,我想显示为myHtml2
显示的myHtml
(第一次预览)。
<div ng-controller="myController">
<div ng-bind-html="myHtml"></div>
<div ng-bind-html="myHtml2"></div>
<div >{{myHtml2}}</div>
</div>
myApp.controller('myController', ['$scope', '$sce', function myController($scope, $sce){
$scope.myHtml = "<b>HELLO</b>";
$scope.myHtml2 = "<b>HELLO</b>";
}]);
HELLO
<b>HELLO</b>
<b>HELLO</b>
答案 0 :(得分:1)
您只需在客户端上使用$sce.trustAsHtml
和unsanitize
HTML:http://plnkr.co/edit/h2loxWsPJOELhNvkfHmK?p=preview
// From: https://stackoverflow.com/questions/1912501/unescape-html-entities-in-javascript
function htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}
myApp.controller('myController', ['$scope', '$sce', function myController($scope, $sce){
$scope.myHtml = "<b>HELLO</b>";
$scope.myHtml2 = $sce.trustAsHtml(htmlDecode("<b>HELLO</b>"));
}]);
htmlDecode
来自:Unescape HTML entities in Javascript?
但是,我不建议采用这种方法。感觉非常hackish,我怀疑可能导致您网站上的漏洞。