0

我试图让我的 JS 文档正确。我正在使用 Dojo,以及基于它构建的其他一些复杂的框架,我将省略细节。关键是这个框架使用了 AMD 模块。我希望我的 JSDoc 工作。

这是我到目前为止所拥有的:

/**
 * Creates a button instance that launches a document entry template selector
 * @module widgets/instance/AddButton
 */
define([
    "dijit/_TemplatedMixin",
    "dijit/_WidgetBase",
    "dojo/_base/declare",
    "dojo/_base/lang",
    "dojo/on",
    "kwcn/services/request",
    "kwcn/widgets/AddContentDialog"
], function (_TemplatedMixin, _WidgetBase, declare, lang, on, request, AddContentDialog) {
    return declare('AddButton', [_WidgetBase, _TemplatedMixin], /** @lends module:widgets/instance/AddButton */{
        id: 'add-button',
        contentList: null,
        templateString: '<button class="btn btn-link toolbar-link"><i class="fa fa-lg fa-file"></i> Add Document</button>',
        addContentItem: null,
        type: null,
        /**
         * @constructs
         * @param args
         * @param args.type {string} The type of content item
         * @param args.contentList {ContentList} The instance of [ContentList]{@link module:widgets/contentList/ContentList} in scope
         */
        constructor: function (args) {
            declare.safeMixin(this, args);
        },
        /**
         * @private
         */
        postCreate: function () {
            console.log("creating the add content button...");
            this.addContentItem = new AddContentDialog({
                repository: request.repository(),
                hasCase: false
            });
            this.own(on(this.domNode, 'click', lang.hitch(this, 'show')));
        },
        /**
         * @public
         */
        show: function () {
            request.inboundFolder().then(lang.hitch(this, function (folder) {
                this.addContentItem.showAddDocument(null, folder);
            }));
        }
    });
});

结果: 在此处输入图像描述

这个结果还不错。但它推断我的成员是静态的。WebStorm 似乎将它们正确地推断为成员,但 jsdoc3 生成器却没有。从我读到的内容来看,我不应该指定@memberof,因为@lends 应该负责这一点。有什么我做错了吗?任何一般性建议将不胜感激。我阅读了 JSDoc3 文档,但是在将 AMD 添加到等式时,很多结构似乎都模糊了。

4

1 回答 1

2

您需要将实例属性借给原型,而不是对象本身:@lends module:widgets/instance/AddButton#. 请注意末尾的 #,它是 . 的简写.prototype

另请注意,jsdoc3 有很多与处理非 CommonJS 模块相关的错误,因此您可能需要做一些额外的 hacky 事情才能使其正常工作。

于 2014-10-16T21:48:31.763 回答