module.exports和exports的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module.exports和exports的区别相关的知识,希望对你有一定的参考价值。

主要区别为

1.module.exports初始值为一个空的对象

2.exports是指向的是module.exports的一个引用;

3.require()返回的是module.exports而不是exports

这句话等同于

module.exports=somethings

exports = module.exports

原理就是module.exports指向新的对象时,exports断开了与module.exports的引用,那么通过exports=module.exports,让exports重新指向module.exports即可。

以上是关于module.exports和exports的区别的主要内容,如果未能解决你的问题,请参考以下文章

exports 和 module.exports 的区别

node exports和module.exports区别

exports 和 module.exports 的区别

exports 和 module.exports 的区别

exports 和 module.exports 的区别

nodejs exports与module.exports的区别