我想知道如何使用JSDoc记录jQuery插件?我的代码是:
/**
* The default configurations of comments
* @typedef {Object} CommentConfig
...
*/
/**
* Show comments
* @method comments
* @version 1.0.1
* @param {CommentConfig} options Configuration of comment
*/
$.fn.comments = function (options) {
// ..
}
我希望@method
是$.fn.comments
,但它不起作用。
答案 0 :(得分:5)
根据JSDoc3 docs,您应该在案件中使用@external
:
/**
* The jQuery plugin namespace.
* @external "jQuery.fn"
* @see {@link http://docs.jquery.com/Plugins/Authoring The jQuery Plugin Guide}
*/
/**
* Show comments
* @function external:"jQuery.fn".comments
*/