我有这种风格的功能:
/**
* 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并未向我提供有用的信息。
谢谢
答案 0 :(得分:2)
只需添加评论@alias
在你的例子中
/**
* Here is my jsdoc comment
* @alias add
*/