回答:
それは:
<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 code]
}]);
<p ng-bind-html="trustedHtml"></p>
、そして$scope.trustedHtml = $sce.trustAsHtml(description(category.id));
<p ng-bind-html="description(category.id)"></p>
その後、関数の最後の行:return $sce.trustAsHtml(value);
フィルタ
app.filter('unsafe', function($sce) { return $sce.trustAsHtml; });
使用法
<ANY ng-bind-html="value | unsafe"></ANY>
ngSanitize
、デフォルトで有効になっているため、必要はありませんngSanitize
個人的には、データベースに入る前にすべてのデータをいくつかのPHPライブラリでサニタイズしているので、別のXSSフィルターは必要ありません。
AngularJS 1.0.8から
directives.directive('ngBindHtmlUnsafe', [function() {
return function(scope, element, attr) {
element.addClass('ng-binding').data('$binding', attr.ngBindHtmlUnsafe);
scope.$watch(attr.ngBindHtmlUnsafe, function ngBindHtmlUnsafeWatchAction(value) {
element.html(value || '');
});
}
}]);
使用するには:
<div ng-bind-html-unsafe="group.description"></div>
無効にするには$sce
:
app.config(['$sceProvider', function($sceProvider) {
$sceProvider.enabled(false);
}]);
<script>System.out.printIn("Hello World!");</script>
私のPHPがユーザー入力からすべてのJSを削除したので、個人的にこれを試していない場合は、うまくいくと思います。私の2番目の例を削除したのは、Angularのネイティブの例がすべての点で優れているためです。
var line = "<label onclick="alert(1)">aaa</label>";
app.filter('unsafe', function($sce) { return $sce.trustAsHtml; });
(html)を使用:
<span ng-bind-html="line | unsafe"></span>
==>click `aaa` show alert box
含む angular-sanitize.js
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
ngSanitize
ルートアングルアプリに追加
var app = angular.module("app", ["ngSanitize"]);
(html)を使用:
<span ng-bind-html="line"></span>
==>click `aaa` nothing happen
フィルターを作成するだけでうまくいきます。(Angle 1.6で回答)
.filter('trustHtml', [
'$sce',
function($sce) {
return function(value) {
return $sce.trustAs('html', value);
}
}
]);
そして、これをhtmlで次のように使用します。
<h2 ng-bind-html="someScopeValue | trustHtml"></h2>
古いディレクティブを元に戻したい場合は、これをアプリに追加できます。
指令:
directives.directive('ngBindHtmlUnsafe', ['$sce', function($sce){
return {
scope: {
ngBindHtmlUnsafe: '=',
},
template: "<div ng-bind-html='trustedHtml'></div>",
link: function($scope, iElm, iAttrs, controller) {
$scope.updateView = function() {
$scope.trustedHtml = $sce.trustAsHtml($scope.ngBindHtmlUnsafe);
}
$scope.$watch('ngBindHtmlUnsafe', function(newVal, oldVal) {
$scope.updateView(newVal);
});
}
};
}]);
使用法
<div ng-bind-html-unsafe="group.description"></div>
JavaScript
$scope.get_pre = function(x) {
return $sce.trustAsHtml(x);
};
HTML
<pre ng-bind-html="get_pre(html)"></pre>
以下のためのRailsを使用している場合は(少なくとも私の場合)angularjs-レール宝石を、サニタイズモジュールを追加することを忘れないでください。
//= require angular
//= require angular-sanitize
そして、それをアプリにロードします...
var myDummyApp = angular.module('myDummyApp', ['ngSanitize']);
次に、次の操作を実行できます。
テンプレート上:
%span{"ng-bind-html"=>"phone_with_break(x)"}
そして最終的に:
$scope.phone_with_break = function (x) {
if (x.phone != "") {
return x.phone + "<br>";
}
return '';
}
my helpful code for others(just one aspx to do text area post)::
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication45.WebForm1" %>
<!DOCTYPE html>
enter code here
<html ng-app="htmldoc" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="angular.min.js"></script>
<script src="angular-sanitize.min.js"></script>
<script>
angular.module('htmldoc', ['ngSanitize']).controller('x', function ($scope, $sce) {
//$scope.htmlContent = '<script> (function () { location = \"http://moneycontrol.com\"; } )()<\/script> In last valid content';
$scope.htmlContent = '';
$scope.withoutSanitize = function () {
return $sce.getTrustedHtml($scope.htmlContent);
};
$scope.postMessage = function () {
var ValidContent = $sce.trustAsHtml($scope.htmlContent);
//your ajax call here
};
});
</script>
</head>
<body>
<form id="form1" runat="server">
Example to show posting valid content to server with two way binding
<div ng-controller="x">
<p ng-bind-html="htmlContent"></p>
<textarea ng-model="htmlContent" ng-trim="false"></textarea>
<button ng-click="postMessage()">Send</button>
</div>
</form>
</body>
</html>
$scope.trustAsHtml=function(scope)
{
return $sce.trustAsHtml(scope);
}
<p class="card-text w-100" ng-bind-html="trustAsHtml(note.redoq_csd_product_lead_note)"></p>