JS中module.exports.run和module.exports之间的区别?

时间:2018-08-09 21:14:35

标签: javascript node.js

标题说明了一切。 javascript中的simple module.exports和module.exports.run有什么区别?我真的在网上找不到一些信息。抱歉。

1 个答案:

答案 0 :(得分:0)

module.exports有点像文件中导出内容的索引。

例如,如果file.js以module.exports = function(args) {行开头,则在使用const file = require("./file.js")导入file.js时,可以使用file(arg1)访问函数。

但是,如果file.js以module.exports.run = function(args) {行开头,则以相同的方式导入文件,则只能使用file.run()访问函数。