gpt4 book ai didi

module - jsdoc自执行匿名函数

转载 作者:行者123 更新时间:2023-12-02 09:27:25 24 4
gpt4 key购买 nike

我如何使用 jsdoc 记录这样的模块?我尝试了很多版本,但无法使其工作。 Funciton 测试没有出现在文档中。

/**
* Description of module, defines module for whole file
*
* @module constructors
* @exports app
*/


var app = (function() {
/**
* Description of function test
*/
function test() {
return '';
}

return {
test: test
}
}());

最佳答案

从版本 3.2.2 开始,jsdoc 很容易被模块绊倒,解决方案是使用 module: 和模块名称来指定您正在记录的实体所在的位置:

/**
* Description of module, defines module for whole file
*
* @module constructors
*/

var app = (/** @lends module:constructors */ function() {
/**
* Description of function test
*/
function test() {
return '';
}

return {
test: test
}
}());

关于module - jsdoc自执行匿名函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22375899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com