語法
@exports <moduleName>
在 JSDoc 3.3.0 及後續版本中,<moduleName>
可以包含 module:
前綴。在先前版本中,您必須省略此前綴。
概觀
在記錄輸出任何項目(除了「exports」物件或「module.exports」屬性)的 JavaScript 模組時,請使用 @exports 標籤。
範例
在使用特殊「exports」物件的模組中,永遠不需要 @exports 標籤。JSDoc 會自動辨識此物件的成員正在輸出。同樣地,JSDoc 會自動辨識 Node.js 模組中的特殊「module.exports」屬性。
/**
* A module that says hello!
* @module hello/world
*/
/** Say hello. */
exports.sayHello = function() {
return 'Hello world';
};
/**
* A module that shouts hello!
* @module hello/world
*/
/** SAY HELLO. */
module.exports = function() {
return "HELLO WORLD";
};
define(function() {
/**
* A module that whispers hello!
* @module hello/world
*/
var exports = {};
/** say hello. */
exports.sayHello = function() {
return 'hello world';
};
return exports;
});
define(function() {
/**
* A module that creates greeters.
* @module greeter
*/
/**
* @constructor
* @param {string} subject - The subject to greet.
*/
var exports = function(subject) {
this.subject = subject || 'world';
};
/** Say hello to the subject. */
exports.prototype.sayHello = function() {
return 'Hello ' + this.subject;
};
return exports;
});
如果模組輸出的物件名稱不是「exports」或「module.exports」,請使用 @exports 標籤來指出正在輸出的內容。
define(function () {
/**
* A module that says hello!
* @exports hello/world
*/
var ns = {};
/** Say hello. */
ns.sayHello = function() {
return 'Hello world';
};
return ns;
});