企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ exports = module.exports ~~~ ## 区别 exports只能导出变量,或函数,module.exports都能还能导出对象,module.exports导出方式更安全,不存在改变指向问题。 ~~~ exports.a =10; module.exports.a = 10; //两个语句意思是一样的 ~~~ ~~~ module.exports ={ a:10 } //错误的导出,已经改变exports的指向,不能require exports = { a:10 } ~~~