web-dev-qa-db-ja.com

Angularjsng-bind-html-安全でない置換

以前は、ng-bind-html-unsafeを使用してサニタイズされていないコードを出力できました(サニタイズはサーバー側で行われるため)。

しかし今、そのオプションはなくなっていますか? $sce.trustAsHtmlを使用できることは知っていますが、それをJavaScriptに追加することは、安全でないことが非常に使いやすい場合、非常に苦痛です。

安全でない状態に戻るにはどうすればよいですか?

9
Harry

さて、あなた自身のディレクティブを作成することは非常に簡単です、ここに例があります。

ディレクティブ

app.directive('bindHtmlUnsafe', function( $compile ) {
    return function( $scope, $element, $attrs ) {

        var compile = function( newHTML ) { // Create re-useable compile function
            newHTML = $compile(newHTML)($scope); // Compile html
            $element.html('').append(newHTML); // Clear and append it
        };

        var htmlName = $attrs.bindHtmlUnsafe; // Get the name of the variable 
                                              // Where the HTML is stored

        $scope.$watch(htmlName, function( newHTML ) { // Watch for changes to 
                                                      // the HTML
            if(!newHTML) return;
            compile(newHTML);   // Compile it
        });

    };
});

使用法

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

デモ: http://jsfiddle.net/cC5VZ/2

17
iConnor

再び簡単に。

App.filter('unsafe', ['$sce', function ($sce) {
    return function (val) {
        return $sce.trustAsHtml(val);
    };
}]);

使用法:

<any ng-bind-html="content | unsafe"></any>

HTMLバインディングの詳細については、ドキュメントを確認してください ここ

警告:実際にHTMLを信頼していることを確認してください。そうしないと、サイトのセキュリティに穴が開いてしまう可能性があります。

22
Matthew.Lothian

最も簡単な方法、$ sceなし:

module.directive('html', function() {
    function link(scope, element, attrs) {

        var update = function() {
            element.html(scope.html);
        }

        attrs.$observe('html', function(value) {
            update();
        });
    }

    return {
        link: link,
        scope:  {
            html:   '='
        }
    };
});

使い方:

<div html="angular.variable"></div>
1
Julien L

この[〜#〜] simple [〜#〜]JSFiddleの例を確認することを強くお勧めします。命の恩人でした:

http://jsfiddle.net/cC5VZ/2/

<div ng-app="ngBindHtmlExample">
  <div ng-controller="ngBindHtmlCtrl">
   <p ng-bind-html="myHTML" compile-template></p>
  </div>
</div>



var app = angular.module('app', []);

app.controller('testApp', function( $scope ) {
    $scope.testHTML = '<h1> Welcome :) </h1>';
});

app.directive('bindHtmlUnsafe', function( $parse, $compile ) {
    return function( $scope, $element, $attrs ) {
        var compile = function( newHTML ) {
            newHTML = $compile(newHTML)($scope);
            $element.html('').append(newHTML);        
        };

        var htmlName = $attrs.bindHtmlUnsafe;

        $scope.$watch(htmlName, function( newHTML ) {
            if(!newHTML) return;
            compile(newHTML);
        });

    };
});
0
Haldrich98