Antwort

0

Erstellen Sie einen Filter für das Vertrauen, den Inhalt

<div ng-bind-html="myData | trustAs"></div> 

angular.module('app').filter('trustAs', ['$sce', 
    function($sce) { 
     return function (input, type) { 
      if (typeof input === "string") { 
       return $sce.trustAs(type || 'html', input); 
      } 
      console.log("trustAs filter. Error. input isn't a string"); 
      return ""; 
     }; 
    } 
]); 

ursprüngliche Antwort https://stackoverflow.com/a/34783962/3769965

Arbeits Geige: https://jsfiddle.net/ebinmanuval/LL5mr7tw/1/

+0

ng-bind-html-unsafe wurde entfernt von AngularJS Sinus 1.2.x. http://stackoverflow.com/a/25679834 – pdorgambide

+0

können wir 'ng-bind-html' mit Vertrauensfilter https://docs.angularjs.org/api/ng/directive/ngBindHtml verwenden –