recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - Les instructions personnalisées dans ng-bind-html ne prennent pas effet !

Problème : en utilisant ng-bind-html, le code html correct a été généré sur la page, mais la directive dans la balise ne prend pas effet !
code js :

Code HTML :

天蓬老师天蓬老师2712 Il y a quelques jours904

répondre à tous(1)je répondrai

  • 怪我咯

    怪我咯2017-06-16 09:21:14

    Bien sûr, cela ne prendra pas effet, ng-bind-html 等同于 innerHTML.

    Vous pouvez personnaliser une commande similaire à ng-bind-html-compile :

    .directive('bindHtmlCompile', ['$compile', function ($compile) {
            return {
                restrict: 'A',
                link: function (scope, element, attrs) {
                    scope.$watch(function () {
                        return scope.$eval(attrs.bindHtmlCompile);
                    }, function (value) {
                        // In case value is a TrustedValueHolderType, sometimes it
                        // needs to be explicitly called into a string in order to
                        // get the HTML string.
                        element.html(value && value.toString());
                        // If scope is provided use it, otherwise use parent scope
                        var compileScope = scope;
                        if (attrs.bindHtmlScope) {
                            compileScope = scope.$eval(attrs.bindHtmlScope);
                        }
                        $compile(element.contents())(compileScope);
                    });
                }
            };
        }]);
    <p ng-bind-html-compile="getId(xxx)"></p>

    répondre
    0
  • Annulerrépondre