JSDoc中文文档(@use JSDoc)

JSDoc @ignore 标签

目录

概述

@ignore标签表示在你的代码中的注释不应该出现在文档中,注释会被直接忽略。这个标签优先于所有其他标签。

对于大多数JSDoc模板来说,包括默认模板,@ignore标签具有以下效果:

示例

In the following example, Jacket and Jacket#color will not appear in the documentation. 在下面的例子中,JacketJacket#color 将不会出现在文档中:

示例: Class with @ignore tag
/**
 * @class
 * @ignore
 */
function Jacket() {
    /** The jacket's color. */
    this.color = null;
}

在下面的例子中, Clothes 命名空间包含一个Jacket类。@ignore标签必须添加到ClothesClothes.Jacket中。Clothes, Clothes.JacketClothes.Jacket#color将不会出现在文档。

示例: 带子类的命名空间
/**
 * @namespace
 * @ignore
 */
var Clothes = {
    /**
     * @class
     * @ignore
     */
    Jacket: function() {
        /** The jacket's color. */
        this.color = null;
    }
};