0
代碼示例:
<p ng-bind-html="htmlcode | unsafe"></p>
var myApp = angular.module('myApp', ["ngSanitize"]);
myApp.controller('helloController', ["$scope", "$sce", function ($scope, $sce) {
$scope.htmlcode="text <b>ng-bind-html</b>";
}
}])
.filter('unsafe', function($sce) { return $sce.trustAsHtml; });
TypeError: html.indexOf is not a function
我有 「santize.js」。
你有另一個代碼工作正常的問題。 http://jsfiddle.net/michelem09/yupds5ky/ –