angularJS:等待在指令加载之前评估模板

时间:2013-11-07 15:04:07

标签: javascript angularjs angularjs-directive

情况

假设我有一个指令,它必须通过ID在定义指令的元素内访问某些元素。可能出现的问题是,在评估指令时,子元素还没有。结果是,我无法通过他们的ID访问这些元素。

示例

FIDDLE

<div ng-controller="MyCtrl">
  <div color="elementId">
      <div ng-repeat="item in items" id="{{ item.id }}">
          {{ item.name }}
      </div>
  </div>
</div>

<script>
    var myApp = angular.module('myApp',[]);

    myApp.directive("color", function () {
        return {
            restrict: "A",   
            link: function (scope, element, attributes) {

                var name = attributes.color,
                    el = element[0];

                scope.$watch(name, function () {
                    var id = scope[name];
                    console.log(id); //id1
                    console.log(element.children().eq(0).attr("id")); //{{ item.id }}
                    element.find("#"+id).css("background-color","red");
                });
            }        
        };
    });

    function MyCtrl($scope) {
        $scope.items = [
            { id:"id1", name:"item1" },
            { id:"id2", name:"item2" }
        ];

        $scope.elementId="id1";
    }

</script>

所以我的指令应该只用$scope.elementId中的id绘制元素的背景颜色。 (顺便说一句。我知道我可以更轻松地处理这个简单的例子,它应该只是说明一般问题)。 问题是,ng-repeat中的元素的id还没有。正如代码中的注释所指出的那样,id仍然是“{{item.id}}”。因此,角度尚未评估此部分。

问题

我现在明显的问题是:如何让我的指令等待后代元素被完全评估?

进一步说明

在我的实际应用程序中,我希望有一个指令,使我能够滚动到页面上的某些元素。我还使用分页指令来分割我想要显示的元素。由于分页,只有真正可见的元素在DOM中,因此隐形元素已在我的控制器中被过滤掉。

我还有一个侧边栏,其中有所有元素的小链接(不仅是可见元素)。当有人点击侧边栏中的元素时,应该发生两个事件:

  1. 跳转到正确的页面
  2. 滚动到相关元素
  3. 当我跳到页面时,我基本上已经了解了上述情况。我有一个完整的新元素列表,必须由ng-repeat处理。但是在那之后,我试着告诉我的scroll-directive,它应该滚动ID为“xy”的元素,但是这个ID还没有分配。

4 个答案:

答案 0 :(得分:4)

使用$ timeout包装$ scope.elementId =“Id1”以通知angular调用侦听器。 (也可以使用$ scope。$ apply()完成,但这会导致另一个问题)

这是jsfiddle link

代码是 -

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

    myApp.directive("color", ['$timeout',  function ($timeout) {
        return {
            restrict: "A",   
            link: function (scope, element, attributes) {
                console.log(element)
                var name = attributes.color,
                    el = element[0];

                 scope.$watch(name, function () {
                     var id = scope[name];
                     console.log(id); //id1
                     console.log(element.find("#"+id)); //{{ item.id }}
                     element.find("#"+id).css("background-color","red");
                 });
            }        
        };
    }]);

myApp.controller("MyCtrl", function($scope, $timeout) {
    $scope.items = [
        { id:"id1", name:"item1" },
        { id:"id2", name:"item2" }
    ];

    $timeout(function() {
        $scope.elementId="id1";
    });
});

答案 1 :(得分:2)

如果最终编写了一个getElementById辅助函数,它返回一个promise并有一个内部间隔,如果元素存在则每100ms检查一次:

updated Fiddle

function getElementById(elementId) {
    var deferred = $q.defer(),
        intervalKey,
        counter = 0, 
        maxIterations = 50;

    intervalKey = setInterval(function () {
        var element = document.getElementById(elementId);
        if (element) {
            deferred.resolve(element);
            clearInterval(intervalKey);
        } else if (counter >= maxIterations) {
            deferred.reject("no element found");
            clearInterval(intervalKey);
        }
        counter++;
    }, 100);

    return deferred.promise;
}

在我给出的例子中,我会这样使用它:

getElementById(id).then(function (element) {
    $(element).css("background-color","red");
}, function (message) {
    console.log(message);
});

它仍然不是我首选的解决方案,但它现在可以解决我的问题。但是,如果有更好的方法,我仍然很好奇。

答案 2 :(得分:1)

根据Jim Hoskins的文章,以下代码段可以帮助您。

  scope.$watch(name, function () {
    setTimeout(function () {
      scope.$apply(function () {
        var id = scope[name];
        console.log(id); //id1
        console.log(element.find("#"+id)); //{{ item.id }}
        element.find("#"+id).css("background-color","red");
      }  
    }, 200))
  });

发布此答案以帮助人们节省一些时间(当然,阅读完整的文章会很有帮助)

答案 3 :(得分:0)

您应该完成指令,包括controller选项。

controller: function ($scope){
     $scope.items = [
        { id:"id1", name:"item1" },
        { id:"id2", name:"item2" }
    ];
}

这将在控制器范围内创建所有内容,然后您可以从使用此指令的视图的控制器访问它。