我有带有指令的模块和带有控制器的模块的应用程序。
angular.module('ValidationWidgets', [])
.directive('validationfield', function () {
....
});
angular.module('MyPage', ['ValidationWidgets'])
.controller('MyFirstController', function ($scope) {
....
});
是否有一些漂亮的语法可以在 app 模块中声明许多控制器,因为.controller('MyFirstController', function ($scope) {
看起来很糟糕?
我想写一些类似的东西:
var myPage = angular.module('MyPage', ['ValidationWidgets']);
myPage.controllers.MyFirstController = function($scope) {
...
}