当模型在范围内更新时,$ watch不起作用。$ apply in directive

时间:2012-10-06 18:39:00

标签: javascript angularjs watch

我有一个指令,我在指令范围的'existingfiles'模型上添加了一个监视。当模型通过范围发生变化时。$ apply,监视器中没有调用。

这是指令代码,请告诉我,如果我在这里遗漏了一些东西,

   directive('fileuploadPlugin', function() {
    var linkFn;
    linkFn = function(scope, element, attrs) {
        angular.element(element).ready(function() {
            jQuery('#fileupload').fileupload({
                done: function (e, data) {
                    scope.$apply(function(scope) {
                        for(var i=0; i < data.result.filesuploaded.length; i++){
                                      scope.existingfiles.push(data.result.filesuploaded[i]);
                    };                              
                    });
                }
        });
        scope.$watch('existingfiles', function(newValue, oldValue) {
                element.imagesLoaded(function() {
                scope.$apply( function() {
                    element.masonry({
                        itemSelector : '.box'
                    });
                });
            });
        });
    };
    return {
        templateUrl : 'templates/fileupload_plugin.htm',
        restrict    : 'A',
        scope       : {
            existingfiles   : '=ngModel',
        },
        link        : linkFn
    };  
     })

这是我对指令的调用,

<div fileupload-plugin ng-model="existingfiles"></div>

请告诉我如何确保正确观看模型

1 个答案:

答案 0 :(得分:40)

通过将'true'作为$ watch调用的第三个参数来解决问题。 请在此处找到有关第三个参数的更多信息,

Angular Docs on $rootScope