如何让 JSDoc 记录我的 _methods?

发布于 2024-12-08 20:56:22 字数 863 浏览 1 评论 0原文

我有一个包含此方法的类,

/**
* 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 记录此方法吗?

I have a class which contains this method

/**
* 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;
    }

};

It is prefixed with _ to distinguish it from the replace method which is for the public interface. Why won't JSDoc document this method when it has a _ in front? If I remove it it documents it perfectly. Is there anything I can do to make JSDoc document this method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-12-15 20:56:22

jsdoc-toolkit 假定以 _ 开头的方法是私有的。这确实是一个共同的约定。您可以看到通过使用 --private 选项运行来包含该方法。

要强制将其记录为公共,请包含 @public 标记。

顺便说一句,您不需要使用 @name,在大多数情况下会自动检测函数的名称。

jsdoc-toolkit assumes that methods starting with _ are private. This is indeed a common convention. You can see that the method is included by running with --private option.

To force documenting it as public, include @public tag.

BTW, you don't need to use @name, the name of a function is detected automatically on most cases.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文