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