1.module.exports 和 exports关系
初始化时指向同一块内存空间,一个空的对象
2.require模块
引入的是module.exports内存空间的模块
module.exports={ hello, helloName }
//require能获取到模块
exports.hello=hello; exports.helloName=helloName;
//require能获取到模块
exports={ hello, helloName }
//require 不能获取到模块 因为model.exports指向的还是空的内存空间
网友评论