AngularJS - detail - $sce.trustAsHtml ??

roberto·2021년 5월 15일
0

AngularJS에서 html을 출력하려면 sanitize를 거쳐야 가능 하다

=> $sce 서비스와 trustAsHtml() 메소드를 사용

<div>
  <span ng-bind-html="ShowHtml"></span>
</div>
myApp = angular.module('App', []);

myApp.controller(function($sce, $scope) {
  var ShowHtml = '<span>html을 보여줍니다</span>';
  // ShowHtml 에 html 태그에 저장하여 출력

  $scope.trustedHtml = $sce.trustAsHtml(ShowHtml);
});

참고 :https://webisfree.com/2017-08-14/angularjs%EC%97%90%EC%84%9C-ng-bind-html%EB%A1%9C-html-%EB%AC%B8%EC%84%9C-%EC%B6%9C%EB%A0%A5%ED%95%98%EB%8A%94%EB%B0%A9%EB%B2%95

profile
medium 으로 이전했습니다

0개의 댓글

관련 채용 정보