從AngularJS 控制器將HTML 插入視圖
由於Angular 的安全措施,將在AngularJS 控制器中建立的HTML 片段插入視圖可能具有挑戰性,這會阻止直接HTML 渲染。要解決這個問題,請在 HTML 中使用 ng-bind-html:
<div ng-bind-html="thisCanBeusedInsideNgBindHtml"></div>
這將提示安全錯誤,可以使用 ngSanitize 或 $sce 解決。
使用$sce :
在控制器中,使用轉換HTML 字串$sce.trustAsHtml():
$scope.thisCanBeusedInsideNgBindHtml = $sce.trustAsHtml(someHtmlVar);
使用ngSanitize:
<script src="lib/angular/angular-sanitize.min.js"></script>
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'ngSanitize'])
以上是如何從控制器安全地將 HTML 插入到 AngularJS 視圖中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!