如何在Angular 1.2+中使用$ sce.trustAsHtml(string)复制ng-bind-html-unsafe

如何在Angular 1.2+中使用$ sce.trustAsHtml(string)复制ng-bind-html-unsafe,第1张

如何在Angular 1.2+中使用$ sce.trustAsHtml(string)复制ng-bind-html-unsafe

应该是:

<div ng-bind-html="trustedHtml"></div>

加在您的控制器中:

$scope.html = '<ul><li>render me please</li></ul>';$scope.trustedHtml = $sce.trustAsHtml($scope.html);

而不是旧的语​​法,您可以在其中

$scope.html
直接引用变量

<div ng-bind-html-unsafe="html"></div>

正如一些评论者指出的那样,

$sce
必须将其注入控制器中,否则会
$sce undefined
出现错误。

 var myApp = angular.module('myApp',[]); myApp.controller('MyController', ['$sce', function($sce) {    // ... [your pre] }]);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5639394.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存