javascript – 如何在jsdoc上添加和使用标记?

前端之家收集整理的这篇文章主要介绍了javascript – 如何在jsdoc上添加和使用标记?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试将customTag添加到jsdoc.我在plugins目录中创建了一个文件,如下所示:

method.js

exports.defineTags = function(dictionary) {
    dictionary.defineTag("methodHttp",{
        mustHaveValue: true,canHaveType: false,canHaveName: true,onTagged: function(doclet,tag) {
            doclet.methodHttp = tag.value;
        }
    });
};

然后我加入了我的conf.json:

{
    "tags": {
        "allowUnknownTags": true
    },"source": {
        "includePattern": ".+\\.js(doc)?$","excludePattern": "(^|\\/|\\\\)_"
    },"plugins": [ "plugins/method" ],"templates": {
        "cleverLinks": false,"monospaceLinks": false,"default": {
            "outputSourceFiles": true
        }
    },"jsVersion": 180
}

现在我尝试在我的模板上得到这个.我在method.tmpl上.

我试过了:

self.find('methodHttp')[0]
data.methodHttp[0]
data.methodHttp

但它不起作用.我的代码出了什么问题?

最佳答案
jsDoc.defineTag不支持带大写字符的标签

虽然它似乎是他们字典中的一个错误

原文链接:https://www.f2er.com/js/429706.html

猜你在找的JavaScript相关文章