从其他控制器调用指令控制器中的方法

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

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


答案 1

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

我想出了这个(小提琴);

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

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

我在模块中放了两件事,一个是可以注入任何地方的API,另一个是定义实际popdown元素的行为:factorydirective

工厂只定义了几个函数,并跟踪了几个变量: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的更改(为了方便起见,我使用bootstrap 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>'
    }
})

然后我定义了一个依赖于以下模块:appPopdown

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>

我不确定它是否完全理想,但它似乎是使用全局弹出指令建立通信的合理方法。

再次,作为参考,小提琴


答案 2

您还可以使用事件来触发弹出窗口。

这是一个基于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();
});

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