是否可以在没有依赖的情况下启动我的角度模块?
这是我的angular.module
angular.module("app", [
'ngSanitize', 'ngAnimate', 'ui.router', 'ngMaterial',
'ngRoute', 'ngCookies', 'NgSwitchery',
'ngCkeditor', 'angularFileUpload',
]);
我不想使用,他们在1日需要。加载。 'NgSwitchery','ngCkeditor','angularFileUpload'
谢谢。
答案 0 :(得分:2)
是的,您可以使用条件来传递依赖关系。
var dependencyArray = ['dep1', 'dep2'];
if (someCondition) {
dependencyArray = ['dep1', 'dep2', 'dep3', 'dep4'];
}
angular.module('app',dependencyArray);
如果您尝试在不同时间加载它们,则可能需要requireJS。