我想为添加为Object.defineProperty
的属性添加JSDoc文档。我猜这样的事情可能有用:
/** @constructor */
function MyClass() {
/** @property {Number} rnd */
Object.defineProperty(this, 'rnd', {
get : function () { return Math.random(); }
});
}
但是生成的JSDoc解释没有这个属性:
$ jsdoc -X test.js
[
{
"comment": "/** @constructor */",
"meta": {
"range": [ 20, 167 ],
"filename": "test.js",
"lineno": 2,
"path": "/jsdoctest",
"code": {
"id": "astnode100000001",
"name": "MyClass",
"type": "FunctionDeclaration",
"paramnames": []
},
"vars": { "": null }
},
"kind": "class",
"name": "MyClass",
"longname": "MyClass",
"scope": "global"
},
{
"comment": "",
"meta": {
"range": [ 116, 159 ],
"filename": "test.js",
"lineno": 5,
"path": "/jsdoctest",
"code": {
"id": "astnode100000012",
"name": "get",
"type": "FunctionExpression",
"value": "function"
}
},
"undocumented": true,
"name": "get",
"longname": "get",
"kind": "function",
"scope": "global"
},
{
"kind": "package",
"longname": "package:undefined",
"files": [ "/jsdoctest/test.js" ]
}
]
记录此类属性的最合适方法是什么? (插件可能?)
答案 0 :(得分:10)
这样就可以了:
/** @constructor */
function MyClass() {
/**
* @property {Number}
* @name MyClass#rnd
*/
Object.defineProperty(this, 'rnd', {
get : function () { return Math.random(); }
});
}
我使用了@property {type} name
语法,但从未在类中使用过。我通常做的是:
/** @property {object} */
this.foo = {};
然后jsdoc使用this.foo
来计算名称(foo
)以及它所属的实体。似乎在类中使用@property {type} name
不起作用。
如果您使用@name
指定名称,则它会知道要为其提供的名称及其所属的位置。 #
表示它是一个实例变量(而不是静态或内部变量)。有关详细信息,请参阅namepath documentation。
答案 1 :(得分:1)
如果您想在课堂外声明成员,可以使用:
/**
* @constructor
*/
function MyClass() {};
/**
* Get the number of differed values in this map
*
* @member {number} count
* @memberOf module:moduleName.MyClass#
* @readonly
*/
Object.defineProperty(MyClass.prototype, 'rnd', {
get : function () { return Math.random(); }
});