这告诉 AngularJS 在 myUtilModule 中定义的所有值、工厂和服务也应该在 myOtherModule 模块中可用。换句话说,myOtherModule 依赖于 myUtilModule。
var myUtilModule = angular.module("myUtilModule", []);
myUtilModule.value ("myValue" , "12345");
var myOtherModule = angular.module("myOtherModule", ['myUtilModule']);
myOtherModule.controller("MyController", function($scope, myValue) {
});
我的问题是:如果您在 myUtilModule 中定义控制器并尝试在 myOtherModule 上使用它们会怎样。这可能吗?