码迷,mamicode.com
首页 > 其他好文 > 详细

node exports 与 module.exports 的区别及使用详解

时间:2020-03-27 12:25:25      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:不同   nbsp   详解   bsp   实例   使用详解   引用   mod   fine   

1、外露各类型的属性,函数,对像,exports.name = name;  可以直接引用

2、只外露类的定义,module.exports,    要new实例化之后才能引用

  2、1 单个文件只外露唯一一个类定义 

        module.exports = classDefine;

  2、2 单个文件同时外露多个不同的类定义 

        module.exports.classDefine1 = classDefine1;

        module.exports.classDefine2 = classDefine2;

        module.exports.classDefine3 = classDefine3;

node exports 与 module.exports 的区别及使用详解

标签:不同   nbsp   详解   bsp   实例   使用详解   引用   mod   fine   

原文地址:https://www.cnblogs.com/qinlongqiang/p/12580403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!