Trandent API
POST
COMMUNITY
ng-bind-html 사용시
inline style 태그가 사라질 때 해결방법
1. 컨트롤러에 $sce 추가
~~~~~($scope, $sce)
2. 사용방법
html :
<div ng-bind-html = "test">
</div>
controller :
$scope.test = $sce.trustAsHtml(htmlString);
해주면
inline stlye tag가 지워지지 않고 적용됨