How to check if a directive or controller is avail

2020-07-02 11:30发布

In angularjs, given a module, how do you check if a directive/controller exists given a module.

I have a module and I want to know if some particular directives have been loaded. Below is some sample code:

var module = angular.module('myModule');
//check if controller exists
if (module.hasController('my.first.controller')){
   //do something
}
if (module.hasDirective('my.first.directive')){
   //do something
}

I have implemented this in a way. Looking for a better way of doing it if it is available by default.

Is this possible? If so, how do you do this?

4条回答
兄弟一词,经得起流年.
2楼-- · 2020-07-02 11:47

Use this code to check if a service exists.

$injector.has('myServiceName')

To check if a directive exists, you must add a Directive suffix after the directive name:

$injector.has('myDirectiveNameDirective')

查看更多
手持菜刀,她持情操
3楼-- · 2020-07-02 12:02
    var controllers = [];

    _.each(app._invokeQueue, function(value, index) {
        if (value[0] !== '$controllerProvider') {
            return;
        }

        controllers.push(value[2][0]);
    });

    if (controllers.indexOf('controller-i-want') === - 1) {
        // controller is undefined
    }
查看更多
萌系小妹纸
4楼-- · 2020-07-02 12:05

Solved the problem by writing a wrapper function that is called to load the controllers and stuff and at such I'm able to tell when each directive is loaded.

查看更多
欢心
5楼-- · 2020-07-02 12:08

I found some working code here

angular.service('ControllerChecker', ['$controller', function($controller) {
    return {
        exists: function(controllerName) {
            if(typeof window[controllerName] == 'function') {
                return true;
            }
            try {
                $controller(controllerName);
                return true;
            } catch (error) {
                return !(error instanceof TypeError);
            }
        }
    };
}]);

JSFiddle: http://jsfiddle.net/fracz/HB7LU/6780/

查看更多
登录 后发表回答