首頁 >web前端 >js教程 >如何從控制器安全地將 HTML 插入到 AngularJS 視圖中?

如何從控制器安全地將 HTML 插入到 AngularJS 視圖中?

Barbara Streisand
Barbara Streisand原創
2024-12-12 22:10:14555瀏覽

How to Safely Insert HTML into AngularJS Views from Controllers?

從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:

  1. 包含angular-sanitize.min.js 資源:
<script src="lib/angular/angular-sanitize.min.js"></script>
  1. 包含應用程式模組(通常是app.js)中的ngSanitize:
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'ngSanitize'])

以上是如何從控制器安全地將 HTML 插入到 AngularJS 視圖中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn