118

我有一个指令,它有自己的控制器。请参阅以下代码:

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

popdown.directive('popdown', function () {
    var PopdownController = function ($scope) {
        this.scope = $scope;
    }

    PopdownController.prototype = {
        show:function (message, type) {
            this.scope.message = message;
            this.scope.type = type;
        },

        hide:function () {
            this.scope.message = '';
            this.scope.type = '';
        }
    }

    var linkFn = function (scope, lElement, attrs, controller) {

    };

    return {
        controller: PopdownController,
        link: linkFn,
        replace: true,
        templateUrl: './partials/modules/popdown.html'
    }

});

这是一个错误/通知/警告的通知系统。我想要做的是从另一个控制器(不是指令控制器)调用show这个控制器上的函数。当我这样做时,我还希望我的链接函数能够检测到某些属性发生了变化并执行一些动画。

这是一些代码来举例说明我的要求:

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

app.controller('IndexController', function($scope, RestService) {
    var result = RestService.query();

    if(result.error) {
        popdown.notify(error.message, 'error');
    }
});

所以在指令控制器上调用showpopdown,链接函数也应该被触发并执行动画。我怎么能做到这一点?

4

4 回答 4

167

这是一个有趣的问题,我开始思考如何实现这样的事情。

我想出了这个(小提琴)

基本上,我没有尝试从控制器调用指令,而是创建了一个模块来容纳所有弹出逻辑:

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

我在模块中放了两件事,一个factory用于可以在任何地方注入的 API ,另一个directive用于定义实际弹出元素的行为:

工厂只定义了几个函数successerror跟踪几个变量:

PopdownModule.factory('PopdownAPI', function() {
    return {
        status: null,
        message: null,
        success: function(msg) {
            this.status = 'success';
            this.message = msg;
        },
        error: function(msg) {
            this.status = 'error';
            this.message = msg;
        },
        clear: function() {
            this.status = null;
            this.message = null;
        }
    }
});

该指令将 API 注入其控制器,并监视 api 的变化(为了方便,我使用引导 css):

PopdownModule.directive('popdown', function() {
    return {
        restrict: 'E',
        scope: {},
        replace: true,
        controller: function($scope, PopdownAPI) {
            $scope.show = false;
            $scope.api = PopdownAPI;

            $scope.$watch('api.status', toggledisplay)
            $scope.$watch('api.message', toggledisplay)

            $scope.hide = function() {
                $scope.show = false;
                $scope.api.clear();
            };

            function toggledisplay() {
                $scope.show = !!($scope.api.status && $scope.api.message);               
            }
        },
        template: '<div class="alert alert-{{api.status}}" ng-show="show">' +
                  '  <button type="button" class="close" ng-click="hide()">&times;</button>' +
                  '  {{api.message}}' +
                  '</div>'
    }
})

然后我定义了一个app依赖于的模块Popdown

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

app.controller('main', function($scope, PopdownAPI) {
    $scope.success = function(msg) { PopdownAPI.success(msg); }
    $scope.error   = function(msg) { PopdownAPI.error(msg); }
});

HTML 看起来像:

<html ng-app="app">
    <body ng-controller="main">
        <popdown></popdown>
        <a class="btn" ng-click="success('I am a success!')">Succeed</a>
        <a class="btn" ng-click="error('Alas, I am a failure!')">Fail</a>
    </body>
</html>

我不确定它是否完全理想,但这似乎是一种与 global-ish popdown 指令建立通信的合理方式。

再次,作为参考,fiddle

于 2013-02-14T21:46:58.447 回答
27

您还可以使用事件来触发 Popdown。

这是一个基于 satchmorun 解决方案的小提琴。它省去了 PopdownAPI,而顶层控制器则$broadcast在作用域链中传递“成功”和“错误”事件:

$scope.success = function(msg) { $scope.$broadcast('success', msg); };
$scope.error   = function(msg) { $scope.$broadcast('error', msg); };

Popdown 模块然后为这些事件注册处理函数,例如:

$scope.$on('success', function(event, msg) {
    $scope.status = 'success';
    $scope.message = msg;
    $scope.toggleDisplay();
});

至少这是可行的,在我看来,这是一个很好的解耦解决方案。如果由于某种原因这被认为是不好的做法,我会让其他人加入。

于 2013-02-28T05:26:16.193 回答
11

您还可以将指令的控制器公开给父范围,就像ngForm使用name属性一样:http ://docs.angularjs.org/api/ng.directive:ngForm

在这里您可以找到一个非常基本的示例如何实现它http://plnkr.co/edit/Ps8OXrfpnePFvvdFgYJf?p=preview

在此示例中,我myDirective使用带有$clear方法的专用控制器(指令的一种非常简单的公共 API)。我可以将此控制器发布到父范围并在指令之外使用调用此方法。

于 2013-09-04T13:20:13.910 回答
3

我得到了更好的解决方案。

这是我的指令,我在指令中注入了对象引用,并通过在指令代码中添加调用函数来扩展它。

app.directive('myDirective', function () {
    return {
        restrict: 'E',
        scope: {
        /*The object that passed from the cntroller*/
        objectToInject: '=',
        },
        templateUrl: 'templates/myTemplate.html',

        link: function ($scope, element, attrs) {
            /*This method will be called whet the 'objectToInject' value is changes*/
            $scope.$watch('objectToInject', function (value) {
                /*Checking if the given value is not undefined*/
                if(value){
                $scope.Obj = value;
                    /*Injecting the Method*/
                    $scope.Obj.invoke = function(){
                        //Do something
                    }
                }    
            });
        }
    };
});

在 HTML 中使用参数声明指令:

<my-directive object-to-inject="injectedObject"></ my-directive>

我的控制器:

app.controller("myController", ['$scope', function ($scope) {
   // object must be empty initialize,so it can be appended
    $scope.injectedObject = {};

    // now i can directly calling invoke function from here 
     $scope.injectedObject.invoke();
}];
于 2015-10-20T13:21:27.837 回答