1

我遇到了一些问题,解决了我正在处理的一些 Angularjs 功能的问题。

基本思想是我有一个系统,在允许用户进入应用程序的下一部分之前,必须满足某些条件。一个例子是用户必须同时添加评论并单击链接(在真实应用程序中,这是文件下载)才能前进。

您可以在此处查看完整示例:https ://jsfiddle.net/d81xxweu/10/

我假设 HTML 是非常自我解释的,然后继续我正在使用我的 Angular 模块做的事情。我的应用声明和初始化如下:

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

myApp.run(function ($rootScope) {
    // Both of these must be met in order for the user to proceed with 'special-button'
    $rootScope.criteria = {
        criteria1: false,
        criteria2: false
    };
});

这很简单。我将一个称为条件的对象附加到应用程序的根范围,以便我的指令和控制器可以访问它。我有一个指令可以呈现链接,一旦满足条件,用户就可以前进。在这个例子中,链接的文本从“Waiting...”变为“Click to continue”,表示我们可以前进。

myApp.directive('specialButton', function ($rootScope) {
    return {
        scope: true,
        template: "<a href='#'>{{ linkText }}</a>",
        replace: true,
        link: function (scope, el, attrs) {
            scope.linkText = 'Waiting...';

            var setLinkState = function(currentCriteria) {
                var criteriaMet = true;

                for(var k in $rootScope.criteria) {
                    if($rootScope.criteria[k] == false) {
                        criteriaMet = false;
                    }
                }

                if(criteriaMet) {
                    scope.linkText = 'Click to proceed';
                }
            };

            // Watch for changes to this object at the root scope level
            $rootScope.$watchCollection('criteria', function(newValues) {
                setLinkState(newValues);
            });
        }
    };
});

因此,为了触发我们在此指令上设置的 watch 语句,我可以添加此控制器允许的注释:

myApp.controller('comments', function ($scope, $rootScope) {
    $scope.commentText = '';
    $scope.comments = [];

    $scope.addComment = function () {
        $scope.comments.push({ commentText: $scope.commentText });
        $scope.commentText = ''

        // When the user adds a comment they have met the first criteria
        $rootScope.criteria.criteria1 = true;
    };
});

前一个是我用于显示/添加评论的控制器。我在这里将 criteria1 设置为 true 以指示用户添加了评论。这实际上工作正常,并且按预期调用了 specialButton 指令中的 $watchCollection。

当我尝试从必须单击才能前进的链接中执行相同的操作时,就会出现问题。这是用指令呈现的,因为据我了解,在这种情况下,指令比控制器更有意义,这与注释列表/表单不同。

myApp.directive('requiredLink', function($rootScope) {
    return {
        scope: true,
        template: "<a href='#'>Click me!</a>",
        replace: true,
        link: function(scope, el, attrs) {
            el.bind('click', function(evt) {
                evt.preventDefault();

                // When the user clicks this link they have met the second criteria
                $rootScope.criteria.criteria2 = true;
            });
        }
    };
});

正如您在此处看到的,我传入 $rootScope 就像在控制器中一样。但是,当我将条件 2 设置为 true 时,不会触发 $watchCollection。

所以最终发生的事情是,如果我先添加评论,然后单击另一个按钮,我看不到 specialButton 更新其文本,因为第二个更改永远不会触发手表。但是,如果我先单击链接,然后添加注释,则 specialButton 会按预期更新。requiredLink的点击是更新数据,但不触发watch。因此,当我添加评论并触发 $watch 时,它会看到 BOTH 已设置为 true。

提前感谢您为解决此问题提供的任何帮助;我很感激你的时间。

4

1 回答 1

1

您的实际问题是您是$rootScope从角度上下文之外的事件更新的,因此很明显角度绑定不会更新,因为在这种情况下不会触发摘要循环。您需要使用以下$apply()方法手动触发它$rootScope

el.bind('click', function(evt) {
    evt.preventDefault();
    // When the user clicks this link they have met the second criteria
    $rootScope.criteria.criteria2 = true;
    $rootScope.$apply(); //this will run digest cycle & will fire `watchCollection` `$watcher`
});

演示 Plunkr

尽管此解决方案有效,但我建议您使用服务而不是使用$rootScope

对于使用服务的实施,您需要遵循以下对您有帮助的事情。

您的服务应该使用criteria对象形式的变量,应该遵循dot rule这样,以便相应的引用将使用 JavaScript 原型更新

服务

app.service('dataService', function(){
    this.criteria = {
        criteria1: false,
        criteria2: false
    };
    //...here would be other sharable data.
})

每当您想在任何需要将其注入到控制器、指令、过滤器功能的地方使用它时。

在监视指令中的服务变量时,您需要执行以下操作。

指示

myApp.directive('specialButton', function (dataService) {
    return {
        scope: true,
        template: "<a href='#'>{{ linkText }}</a>",
        replace: true,
        link: function (scope, el, attrs) {
            //.. other code

            // deep watch will watch on whole object making last param true
            scope.$watch(function(){ 
                return dataService.criteria //this will get get evaluated on criteria change
            }, function(newValues) {
                setLinkState(newValues);
            }, true);
        }
    };
});
于 2015-06-22T17:51:09.330 回答