gpt4 book ai didi

javascript - AngularJS $sce 只信任某些元素

转载 作者:行者123 更新时间:2023-12-03 05:54:27 27 4
gpt4 key购买 nike

假设以下字符串:

<b><i><anotherelement>Hello World</anotherelement></i></b>

我只想允许粗体元素工作,而斜体元素(以及任何其他元素!)保持不变,因此输出为:<强> <i><anotherelement>Hello World</anotherelement></i>

目前我使用:

function outputHtml($element, value){
$element.html($sanitize(value));
}

该解决方案信任 $sce bundle 附带的所有元素,因此它对我来说没有用:(

任何帮助将不胜感激,谢谢!

最佳答案

检查这个 fiddle - http://jsfiddle.net/3J25M/764/

Controller -

angular.module('ngBindHtmlExample', ['ngSanitize'])
.controller('ngBindHtmlCtrl', ['$scope','$sce', function($scope, $sce) {
$scope.value = '<i><anotherelement>Hello World</anotherelement></i>';
$scope.myHTML = $sce.trustAsHtml('<b ng-bind="value"></b>');
}])
.directive('compileTemplate', function($compile, $parse){
return {
link: function(scope, element, attr){
var parsed = $parse(attr.ngBindHtml);
function getStringValue() {
return (parsed(scope) || '').toString();
}

// Recompile if the template changes
scope.$watch(getStringValue, function() {
$compile(element, null, -9999)(scope); // The -9999 makes it skip directives so that we do not recompile ourselves
});
}
}
});

HTML -

<div ng-app="ngBindHtmlExample">
<div ng-controller="ngBindHtmlCtrl">
<p ng-bind-html="myHTML" compile-template></p>
</div>
</div>

希望这有帮助!!

关于javascript - AngularJS $sce 只信任某些元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39998305/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com