1
나는 의견 글 상자가 있으며 ngSanitize/$ sce를 사용하여 [href]를 안전한 HTML로 허용하고 싶습니다.
<span contact-highlight hightlight-value="showedText" ng-bind-html="showedText"></span>
을 그리고 내 contactHiglight 지시어 안에 나는이있다 : 그래서 나는이 노력하고있어
contentObjectApp.directive('contactHighlight', function ($sce) {
return {
restrict: 'A',
scope: { hightlightValue: '=' },
link: function ($scope, $element, $attrs) {
$scope.hightlightValue = "<h2> testing" + $sce.trustAsHtml('<a href="#">render me please</a>') + " </h2>";
}
};
});
I 방법 만이 HREF 링크가 될 '제발 렌더링'할 수 있도록 기대하지만 항상 렌더링되기를 기대합니다. 내가 뭘 놓치고 있니? 이 작업을 수행하는 쉬운 방법이 있습니까?