How to check for the existence of a module without an error being raised?

前端 未结 7 691
小蘑菇
小蘑菇 2020-12-24 01:04

In Angular 1.2, ngRoute is a separate module so you can use other community routers like ui.router instead.

I\'m writing an open-source mod

相关标签:
7条回答
  • 2020-12-24 01:41

    I would test for the service instead of the module itself.

    // In controller
    if($injector.has('$route')){
    
    }
    if($injector.has('$state')){
    
    }
    
    // In angular config
    if($injector.has('$routeProvider')){
    
    }
    if($injector.has('$stateProvider')){
    
    }
    
    0 讨论(0)
  • 2020-12-24 01:42

    I am not aware of a way of checking without an error being raised; however, notice that the issue is that it was an Uncaught Error, not that an error was thrown. The pattern for catching such an error is the following.

    try { angular.module("ngRoute") } catch(err) { /* failed to require */ }
    

    If an error is caught, you can try the other module, and if not, you can use the first.

    If your behavior will be the same for each module, you could do something like the following, in which we define a function which will attempt the first of the listed module names, and if an error is thrown, try the next option.

    var tryModules = function(names) {
      // accepts a list of module names and
      // attempts to load them, in order.
    
      // if no options remain, throw an error.
      if( names.length == 0 ) {
        throw new Error("None of the modules could be loaded.");
      }
    
      // attempt to load the module into m
      var m;
      try {
        m = angular.module(names[0])
      } catch(err) {
        m = null;
      }
    
      // if it could not be loaded, try the rest of
      // the options. if it was, return it.
      if( m == null ) return tryModules(names.slice(1));
      else return m;
    };
    
    tryModules(["ngRoute", "ui.router"]);
    
    0 讨论(0)
  • 2020-12-24 01:43

    If you decorate angular.module to store the names in an array then you could just check if the array contains your module name.

    Decorate angular.module

    See @dsfq's answer on SO.

    This needs to happen after angular is loaded but before you start loading any angular modules.

    Check for your module

    if(angular.modules.indexOf("ngRoute") > -1) ...

    0 讨论(0)
  • 2020-12-24 01:44

    The original answer is legit. However, as an alternative, I wrote this when I needed to "find or create" the modules. There's a number of use cases, but generally, it lets you not have to worry about file load order. You could either put this in a initialModules.js... or the top of all your individual service/directive files start with something like this. This little function works like a charm for me:

    var initialModules = [
      {name: 'app.directives', deps: ['ui.mask']},
      {name: 'app.services'},
      {name: 'app.templates'},
      {name: 'app.controllers'}
    ];
    
    initialModules.forEach(function(moduleDefinition) {
      findOrCreateModule(moduleDefinition.name, moduleDefinition.deps);
    });
    
    function findOrCreateModule(moduleName, deps) {
      deps = deps || [];
      try {
        angular.module(moduleName);
      } catch (error) {
        angular.module(moduleName, deps);
      }
    }
    
    
    ///// OR... in like "myDirective.js"
    findOrCreateModule('app.directives').directive('myDirective', myDirectiveFunction);
    
    0 讨论(0)
  • 2020-12-24 01:44

    The problem of automatically load or create a module could be better solved by something like gulp-angular-filesort, though. It works really flawlessly.

    From gulp-angular-filesort github page: Automatically sort AngularJS app files depending on module definitions and usage

    Used in conjunction with gulp-inject to inject your AngularJS application files (scripts) in a correct order, to get rid of all Uncaught Error: [$injector:modulerr].

    Disclaimer: I'm not affiliated with gulp-angular-filesort, I only use it with a lot of profit.

    0 讨论(0)
  • 2020-12-24 01:55

    A much better solution is to simply do your check when the module is created. You just need a utility function to add a callback.

    //create a utility function to add a callback to object methods    
    //here we are making it a method of the underscore or lowdash object
    //but it could be added to the angular global object or anything else
    _.addCallBack = function (obj, originalMethodName, callBackMethod, context){
                var fnOriginal = obj[originalMethodName],
                    outcome;
    
                context = context || obj;
    
                obj[originalMethodName] = function () {
                    var outcome = fnOriginal.apply(this, arguments);
    
                    callBackMethod.apply(this, arguments);
    
                    return outcome;
                };
    };
    
    _.addCallBack(angular, "module", function(sModuleName, asDependencies){
        if(_.contains(asDependencies, "ngRoute")){
          //your logic here
          //just loop through if you don't use underscore or lowdash
        }
    });
    
    0 讨论(0)
提交回复
热议问题