我有一个包含此方法的类
/**
* Uses the native RegExp object and the native string.replace to replace text
* @name _replace
* @param {String} find Text string or regex to search for
* @param {String} replace Text string or regex for replacing
* @param {String} string String to perfom the replace on
* @returns {String} Returns the string with the text replaced
*/
this._replace = function(find, replace, str) {
var regex;
if(typeof find !== undefined && replace !== undefined && typeof str === 'string') {
regex = new RegExp(find, this._getFlags());
return str.replace(regex, replace, str);
} else {
return false;
}
};
它以_
为前缀,以区别于公共接口的replace
方法。为什么JSDoc在前面有_
时不记录这个方法?如果我删除它,它会完美记录。有什么办法可以让JSDoc记录这个方法吗?
答案 0 :(得分:4)
jsdoc-toolkit假定以_
开头的方法是私有的。这确实是一个普遍的惯例。您可以通过使用--private
选项运行来查看该方法。
要强制将其记录为公开,请添加@public
代码。
顺便说一句,您不需要使用@name
,在大多数情况下会自动检测到某个功能的名称。