是否可以将ng-annotate用于角度模块构造?
例如,
angular.module("testApp", ["ui.router"])
.controller("FrontController", function($scope, $window, $log) {
...
});
使用各种依赖项进行注释。但是,我无法使用模块实例来处理它,因为删除["ui.router"]
数组会将模块构造函数更改为模块获取器。
此外,我没有找到关于这个特定主题的文档。