custom $ compile指令有时仅适用于同一范围

时间:2016-04-11 15:12:15

标签: javascript angularjs json angularjs-directive angularjs-rootscope

谢谢你的期待。我会直接潜入:

JSON对象具有带有ng-click属性的HTML链接,使用ng-bind-html$sce' s trustAsHtml来保证HTML安全。在json加载到angular-compile承诺之后,我还使用了自定义$q指令将角点击侦听器编译到应用程序中。

乍一看,所有这些都按预期工作......

JSON

{ 
 "text" : "Sample of text with <a data-ng-click=\"__services._animation.openModal('g');\">modal trigger</a>?" 
}

查看

<p data-ng-bind-html="__services.trustAsHTML(__data.steps[step.text])"
data-angular-compile></p>

指令

angular.module('app.directives.AngularCompile', [], ["$compileProvider", function($compileProvider) {
    $compileProvider.directive('angularCompile', ["$compile", function($compile) {
        return function(scope, element, attrs) {
            scope.$watch(
                function(scope) {
                    return scope.$eval(attrs.angularCompile);
                },
                function(value) {
                    element.html(value);
                    $compile(element.contents())(scope);
                }
            );
        };
    }])
}]);

问题:

好的,所以它有效。我的应用加载,它提供安全的HTML,我的ng-click打开模式,传递它的参数。我在生成的html中的class='ng-binding'标记上的p标记class="ng-scope"上看到了a。万岁!

下一个业务顺序是将该数据写入另一个跟踪进度的模型中,并在另一个视图中通过相同的ng-bindtrustAsHTMLangular-compile treatment运行。只需将数据复制到兄弟对象中即可。

这里失败了!

<p data-ng-bind-html="__services.trustAsHTML(__state.modal.text)"
data-angular-compile></p>

在第二个视图中,它是同一页面上同一范围($ rootScope)中的模态 - 绑定,并应用trustAsHTML Angular。但该链接无法点击,class="ng-scope"标记上未生成a

如果对我的设置有进一步解释可能有助于理解这个问题,请在此详细说明。所有初始应用程序都由礼宾部设置,它将大部分数据存储在$ rootScope:

    return angular
        .module('app', [
        'ngResource',
        'ngSanitize',
        'ui.router',
        'oslerApp.controllers.GuideController',
        'oslerApp.services.ConciergeService',
        'oslerApp.services.DataService',
        'oslerApp.services.LocationService',
        'oslerApp.services.StatesService',
        'oslerApp.directives.AngularCompile',

    ])
    .config(function($stateProvider, $urlRouterProvider) {
      // For any unmatched url, redirect to landing
      $urlRouterProvider.otherwise("/");

      // Now set up the states
      $stateProvider
        .state('guide', {
          url: "/guide",
          templateUrl: "views/guide.html",
          controller: 'GuideController as guide'
        })
        .state('contact', {
          url: "/contact",
          templateUrl: "views/contact.html"
        })
    })
    .run(function(ConciergeService) {
        ConciergeService.init();
    });

我花了2天时间重构我的整个网站,看看是不是因为模式是在它自己的指令中,但是把它放在同一个模板和范围内似乎没什么帮助我在这里。

1 个答案:

答案 0 :(得分:0)

课程:如果你必须重构所有内容并且仍然没有取得任何进展,那么你做错了。

为了解决这个问题,2天后拔毛,我做了一个小小的服务,并通过以下方式传递问题文本:

        compiler: function(element, template, content, scope) {
            element = $(element);
            template = template[0] + content + template[1];
            var linkFn = $compile(template);
            content = linkFn(scope);

            element.replaceWith(content);
        },