5

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

方法.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

但它不起作用。我的代码有什么问题?

4

1 回答 1

4

jsDoc.defineTag不支持带有大写字符的标签...

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

于 2013-02-26T17:08:12.373 回答