繁体   English   中英

从另一个控制器中的指令内部定义的一个控制器调用方法:AngularJS

[英]Call a method from one controller defined inside directive in another controller : AngularJS

我有一个指令,其中存在控制器,我有一个功能。 我需要从另一个控制器调用该函数。

指令:

    angular.module('test.directives').directive("manageAccess", function() {
        return {
            restrict: "E",
            replace: true,
            templateUrl: "template/test.html",
            controller: function($scope, $element, $http) {
                $scope.getRoles = function() {
                    console.log('hi');
                };
            }
        };
    });

$ scope.getRoles方法是我需要从不同控制器调用的方法。

控制器:

    angular.module("test.controllers").controller("testController", function($scope, $http) {
        $scope.getUsers = function() {
            // i need to call getRoles method here
        }
    });

我怎样才能做到这一点?

请帮忙,谢谢。

您可以使用AngularJS服务/工厂

我把getRoles函数放在API的工厂中,可以在任何地方注入。

工作演示

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

RolesModule.factory('RolesAPI', function() {
    return {
        getRoles: function() {
            this.roles = 'my roles';
            console.log('test');
        }
    }
});

angular.module("test.controllers",['UserRoles'])
.controller("testController",function($scope,$rootScope,RolesAPI, $http) {
        $scope.getUsers = function() {
           RolesAPI.getRoles();
        }
});

angular.module('test.directives',['UserRoles'])
.directive("manageAccess", function() {
    return {
        restrict: "E",
        replace: true,
        templateUrl: "template/test.html",
        controller: function($scope, $element, $http) {                   

        }
    };
})

试试以下

angular.module('test.directives').directive("manageAccess", function() {
        return {
            restrict: "E",
            replace: true,
            scope: {getRoles: '='},
            templateUrl: "template/test.html",
            controller: function($scope, $element, $http) {
                $scope.getRoles = function() {
                    console.log('hi');
                };
            }
        };
    });

调节器

angular.module("test.controllers").controller("testController", function($scope, $http) {
    $scope.getUsers = function() {
        // i need to call getRoles method here
        $scope.getRoles() 
    }
});

在HTML中

<manage-access get-roles="getRoles"></manage-access>

如果函数不依赖于指令元素,则将其移动到服务将其传递给指令和testcontroller。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM