JSDoc 忽略了一些函数
JSDoc ignores some functions
我有这种风格的功能:
/**
* Here is my jsdoc comment
*/
Controller.add = function(req, res, next){}
我的问题是 jsdoc 忽略了这条评论。我刚刚获得了这样的功能的文档:
/**
* Here is my jsdoc comment (which works fine)
*/
function add(req, res, next){}
我是否遗漏了某个配置?文档 doc 没有给我有用的信息。
谢谢
只需在您的评论中添加一个 @alias
在你的例子中
/**
* Here is my jsdoc comment
* @alias add
*/
我有这种风格的功能:
/**
* Here is my jsdoc comment
*/
Controller.add = function(req, res, next){}
我的问题是 jsdoc 忽略了这条评论。我刚刚获得了这样的功能的文档:
/**
* Here is my jsdoc comment (which works fine)
*/
function add(req, res, next){}
我是否遗漏了某个配置?文档 doc 没有给我有用的信息。
谢谢
只需在您的评论中添加一个 @alias
在你的例子中
/**
* Here is my jsdoc comment
* @alias add
*/