gpt4 book ai didi

javascript - Node.js module.exports 的用途是什么以及如何使用它?

转载 作者:太空宇宙 更新时间:2023-11-04 02:04:57 30 4
gpt4 key购买 nike

Node.js module.exports 的用途是什么以及如何使用它?

我似乎找不到任何相关信息,但它似乎是 Node.js 相当重要的一部分,因为我经常在源代码中看到它。

根据Node.js documentation :

module

A reference to the currentmodule. In particular module.exportsis the same as the exports object. Seesrc/node.js for more information.

但这并没有真正的帮助。

module.exports 到底做什么,一个简单的例子是什么?

最佳答案

module.exports是作为 require 调用结果实际返回的对象。

exports 变量最初设置为同一个对象(即它是一个简写“别名”),因此在模块代码中您通常会编写如下内容:

let myFunc1 = function() { ... };
let myFunc2 = function() { ... };
exports.myFunc1 = myFunc1;
exports.myFunc2 = myFunc2;

导出(或“公开”)内部作用域函数 myFunc1myFunc2

在调用代码中您将使用:

const m = require('./mymodule');
m.myFunc1();

其中最后一行显示 require 的结果(通常)只是一个可以访问其属性的普通对象。

注意:如果您覆盖exports,那么它将不再引用module.exports。因此,如果您希望将新对象(或函数引用)分配给 exports,那么您还应该将该新对象分配给 module.exports

<小时/>

值得注意的是,添加到 exports 对象的名称不必与您要添加的值的模块内部范围名称相同,因此您可以:

let myVeryLongInternalName = function() { ... };
exports.shortName = myVeryLongInternalName;
// add other objects, functions, as required

后跟:

const m = require('./mymodule');
m.shortName(); // invokes module.myVeryLongInternalName

关于javascript - Node.js module.exports 的用途是什么以及如何使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44679131/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com