当将函数存储在对象中时,我无法在JSDoc中显示函数。所以我有类似的东西:
/**
*/
var methods = {};
/**
Get all resources
*/
methods.getResources = function(){
return name;
}
如何在JSDoc中显示getResources函数?我尝试将@class
添加到没有运气的方法中。
答案 0 :(得分:2)
@namespace
和@memberOf
应该是您正在寻找的。 p>
/**
* @namespace methods
*/
var methods = {};
/**
* Get all resources
* @memberOf methods
*/
methods.getResources = function(){
return name;
}