module.exports,exports,export和export default,import与require区别与联系

基本问题 module.exports和exports是属于CommonJS模块规范,导出模块! export和export default是属于ES6语法,导出模块! 同样import和require分别属于ES6和CommonJS,导入模块! module.exports和exports 每一个Node.js执行文件,都自动创建2个对象 exports 和 module, module 又有一个属性 exports, 这个exports 属性...
阅读 265
0 条评论