Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular filter return html

I want to use unsafe-html in angularjs 1.2. Whereas the filter without html does work, with html it does not. What I do:

I added angular-sanitize to my html head:

<script src="~/Scripts/angular.js"></script>
<script src="~/Scripts/angular-sanitize.js"></script>

My angular module:

var myApp = angular.module('myApp', ['ngSanitize'])
    .filter('convertState', function ($sce) {
        return function (state) {
            if (state == 1) {
                return $sce.trustAsHtml("<strong>" + state + "</strong> special state");
            }
            else {
                return $sce.trustAsHtml("<strong>"+state + "</strong> normal state");
            }
        }
    });

My Html:

<td><span ng-bind-html="f.state | convertstate"></span></td>

edit: updated ng-bind-html-unsafe to ng-bind-html

like image 905
daniel Avatar asked Nov 29 '13 11:11

daniel


1 Answers

ng-bind-html-unsafe has been removed in Angular 1.2. Since you are correctly sanitizing your input, you should just use ng-bind-html.

Example: http://plnkr.co/edit/0bHeXrarRP7IAciqAYgM?p=preview

like image 188
musically_ut Avatar answered Oct 14 '22 15:10

musically_ut