标题说明了一切。 javascript中的simple module.exports和module.exports.run有什么区别?我真的在网上找不到一些信息。抱歉。
答案 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()
访问函数。