我有一个 AngularJS 工厂,我正在尝试生成使用 Jsdoc 的文档。逻辑如下:
(function (angular) {
/**
* @module factories
* @memberOf angular_module
*/
var factories = angular.module('factories');
/**
* @class BaseService
* @classdesc Base object
* @param {Object} $rootScope Root scope for the application.
*/
factories.factory('BaseService', ['$rootScope', function ($rootScope) {
var baseObject = (function () {
// Prototype
var basePrototype = {
_construct: function (args) {
},
publicMethod: function (args) {
}
};
// 'Private' methods
function initialise(args) {
}
function privateMethod(param) {
}
function setObjectProperties(o, properties) {
for (prop in properties) {
if (properties.hasOwnProperty(prop)) {
o[prop] = properties[prop];
}
}
}
//-----------------------------------------------
return {
create: function (args, properties) {
function obj() { }
obj.prototype = basePrototype;
var o = new obj();
setObjectProperties(o, properties);
// Call the base object 'constructor'
o._construct(args);
return o;
}
};
})();
return {
/**
* @function create
* @memberof! BaseService
* @description Creates a new object
*/
create: function (args, properties) {
return baseObject.create(args, properties);
}
};
}
]);
/**
* @class ChildService
* @classdesc Child object
* @extends BaseService
*/
factories.factory('ChildService', ['BaseService', function (BaseService) {
return BaseService.create({ 'someProperty': true }, {
/**
* @function childPublicMethod
* @description Child public method
*/
childPublicMethod: function () {
return this.publicMethod(123);
}
});
}]);
}(angular));
在另一个文件中,我有:
/**
* @namespace angular_module
*/
我遇到的问题是我想为 BaseService.create 方法生成文档作为 BaseService 文档的一部分。同样,我想为 ChildService 部分中的 ChildService.childPublicMethod 函数生成文档。但是目前没有为 BaseService.create 创建任何内容,并且 ChildService.childPublicMethod 的文档已添加到工厂模块中。我曾尝试使用@lends 和@alias,以及各种模块/类名的组合作为@memberof 行的一部分,但到目前为止,没有什么能给我想要的结果。任何建议都非常感激。