时间:2021-05-18
我们只需知道三点即可知道 exports 和 module.exports 的区别了:
1.exports 是指向的 module.exports 的引用
2.module.exports 初始值为一个空对象 {},所以 exports 初始值也是 {}
3.require() 返回的是 module.exports 而不是 exports
所以:
• 我们通过
var name ='nswbmw'; exports.name = name; exports.sayName =function(){ console.log(name); }给 exports 赋值其实是给 module.exports 这个空对象添加了两个属性而已,上面的代码相当于:
var name ='nswbmw'; module.exports.name = name; module.exports.sayName =function(){ console.log(name); }以上这篇深入理解node exports和module.exports区别就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
require用来加载代码,而exports和module.exports则用来导出代码。但很多新手可能会迷惑于exports和module.exports的区
Node.js引入了模块(Module)概念,一个模块可以通过module.exports或exports将函数、变量等导出,以使其它JavaScript脚本通
本文实例讲述了seaJs使用心得之exports与module.exports的区别。分享给大家供大家参考,具体如下:1.exports是module.expo
node的导出与导入1.node的导出语法 varpath={} module.exports=path2.node的导入语法constpath=requi
因为是做前端的,对node的生态一直也比较关注,对于node中对commonJS模块化的实现给了我们很大的方便,之前对于导出的module.exports和ex