search

Home  >  Q&A  >  body text

angular.js - 能否判断angularjs module是否启动

我在应用中启动angular的模块是异步的,所以多个文件之间需要判断模块是否已经启动,如果未启动则启动,如果启动了就直接使用。
想问下AngularJS有没有提供检测机制

怪我咯怪我咯2744 days ago521

reply all(3)I'll reply

  • 迷茫

    迷茫2017-05-15 17:07:23

    The question I asked makes no sense

    reply
    0
  • 世界只因有你

    世界只因有你2017-05-15 17:07:23

    angular.module('xxx',[]).run(function(){
        console.log('初始化完毕');
    });

    reply
    0
  • 大家讲道理

    大家讲道理2017-05-15 17:07:23

    This can be found in the source code

    if(!window.angular.bootstrap){
        angular.bootstrap(app, ['MyModule']);
    }

    reply
    0
  • Cancelreply