感谢在这里找到的答案:
https://stackoverflow.com/a/19336366/592495
我的 JavaScript 文档组织良好且格式正确。每个命名空间都是其中包含的方法的“父级”。但是,导航并不像我想要的那么精细。
通过简单的命令 ( jsdoc file1.js file2.js
) 使用 node.js 工具编译/渲染后,文档将生成为默认模板。这个默认模板在侧边栏导航中显示我的命名空间,但它不显示每个包含的方法。
您可以通过将@class
指令添加到每个方法来伪造方法列表,但正如我们所知,它们并不是真正的类。
我希望看到这样的侧边栏导航:
My Project
- namespace 1
- method.a
- method.b
- method.c
-namespace 2
- method.d
- method.e
任何我忽略的文档方向将不胜感激。
[编辑添加:]
经过实验,@class
几乎完全符合我的要求,但有一些例外:
它列出了命名空间之上的类。我不喜欢这样,因为命名空间本来就是“父母”。
JavaScript 没有那种意义上的类。不是那些被称为“类”的命名法。在阅读文档以查看“类”列表时,它会产生奇怪的断开连接。
它会自动添加“新”运算符。并非所有方法都有构造函数……您可以看到问题!
[编辑:示例代码]
所以这是当前的结构。在我用 JSDoc 注释对其进行注释之前,这是基本方法:
var app = app || {};
app.utils = {
whizbang: function() {},
geegolly: function() {}
};
app.render = {
thestuff: function(params) {},
thethings: function(params) {}
}
}
因此,使用对象文字表示法,顶层是整个应用程序的“命名空间”,但其中有用于不同目的的子命名空间。在这里,我有一个特定于实用程序的子命名空间,以及另一个特定于渲染的子命名空间。每个都可以有属性,但更重要的是它们每个都包含函数。这些功能应该出现在侧边栏中。现在用我当前的 JSDoc 模式来充实它:
/**
* @file MyApp.js This is an awesome description of MyApp.js
*
* @version 0.1
* @author Greg Pettit
* @copyright 2015
*
*/
/**
* Description of my main namespace!
*
* @namespace app
*/
var app = app || {};
/**
* This is a description of my sweet utilities namespace!
*
* @memberof app
* @type {object}
* @namespace app.utils
*/
app.utils = {
/**
* app.utils.whizbang is an awesome function with magical powers. I sure wish
* it would appear in the sidebar as a member of app.utils!
*
* @memberof app.utils
* @method whizbang
*
* @param {method} [successCallback] Method invoked on successful attempt.
* @param {method} [errorCallback] Method invoked on unsuccessful attempt.
*
*/
whizbang: function(successCallback, errorCallback) { // do utility stuff! }
}
/**
* This is a description of the best rendering namespace ever.
*
* @memberof app
* @type {object}
* @namespace app.render
*/
app.render = {
/**
* app.render.thethings renders the things! I wish it would render to the sidebar...
*
* @memberof app.render
* @method thethings
*
* @param {method} node The node to which thethings are rendered
*
*/
thethings: function(node) { // do rendering stuff! }
}