ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ /表示绝对路径 ./表示相对于当前文件的路径 ~~~ - 支持js,json,node扩展名,不写依次尝试 - 不写路径则认为是build-in模块或者各级node_modules内的第三方模块 ## 1.module.exports={} ~~~ //a.js const a = 100; function test (){ console.log(a); } module.exports={ a, test } //b.js const mode = require('./01.js'); console.log(mode.test()) ~~~ ## 2.module.export.test = test; ~~~ //a.js const a = 100; function test (){ console.log(a); } module.exports.test = test; //b.js const mode = require('./01.js'); console.log(mode.test()) ~~~ >导出的都是对象