1. ホーム
  2. angularjs

[解決済み] angular ng-bind-htmlとその中のディレクティブ

2023-01-22 01:40:45

質問

プランカーリンク

要素を持っていて、そこにhtmlをバインドしたいと思います。

<div ng-bind-html="details" upper></div>

これでうまくいきました。さて、これと一緒に、私はバインドされたhtmlにバインドされているディレクティブも持っています。

$scope.details = 'Success! <a href="#/details/12" upper>details</a>'

しかし、ディレクティブ upper という div とアンカーが評価されません。どうすれば動くようになるのでしょうか?

どのように解決するのですか?

私もこの問題に直面し、何時間もインターネットを検索した後、私は@Chandermaniのコメントを読んで、それが解決策であることが証明された。 このパターンで 'compile' ディレクティブを呼び出す必要があります。

HTMLです。

<div compile="details"></div>

JS:

.directive('compile', ['$compile', function ($compile) {
    return function(scope, element, attrs) {
        scope.$watch(
            function(scope) {
                // watch the 'compile' expression for changes
                return scope.$eval(attrs.compile);
            },
            function(value) {
                // when the 'compile' expression changes
                // assign it into the current DOM
                element.html(value);

                // compile the new DOM and link it to the current
                // scope.
                // NOTE: we only compile .childNodes so that
                // we don't get into infinite loop compiling ourselves
                $compile(element.contents())(scope);
            }
        );
    };
}])

動作中の のフィドルを見ることができます。