::: details 目录 [[toc]] :::
/*
** 一段简单的 JSDoc 注释。
*/
假如我们有一段这样的代码,没有任何注释,看起来是不是有一定的成本。
function Book(title, author){
this.title=title;
this.author=author;
}
Book.prototype={
getTitle:function(){
return this.title;
},
setPageNum:function(pageNum){
this.pageNum=pageNum;
}
};
如果使用了 JSDoc 注释该代码后,代码的可阅读性就大大的提高了。
/**
* Book类,代表一个书本.
* @constructor
* @param {string} title - 书本的标题.
* @param {string} author - 书本的作者.
*/
function Book(title, author){
this.title=title;
this.author=author;
}
Book.prototype={
/**
* 获取书本的标题
* @returns {string|*} 返回当前的书本名称
*/
getTitle:function(){
return this.title;
},
/**
* 设置书本的页数
* @param pageNum {number} 页数
*/
setPageNum:function(pageNum){
this.pageNum=pageNum;
}
};
@constructor明确一个函数是某个类的构造函数。
我们通常会使用@param来表示函数、类的方法的参数,@param是 JSDoc 中最常用的注释标签。参数标签可表示一个参数的参数名、参数类型和参数描述的注释。如下所示:
/**
* @param {String} wording 需要说的句子
*/
function say(wording){
console.log(wording);
}
@return表示一个函数的返回值,如果函数没有显示指定返回值可不写。如下所示:
/**
* @return {Number} 返回值描述
*/
@example通常用于表示示例代码,通常示例的代码会另起一行编写,如下所示:
/**
* @example
* multiply(3, 2);
*/
如果想了解更多的 JSDoc 注释的内容,可参考下面的链接。