exports和module.exports的区别
2018-12-22 本文已影响0人
JSXL
exports只能通过“.”的方式暴露属性和方法
eg: exports.name = '张三'
module.exports可以通过“.”的方式或 = { }方式
eg: module.exports.name = "张三"
或 module.exports= {name: "张三"}
exports只能通过“.”的方式暴露属性和方法
eg: exports.name = '张三'
module.exports可以通过“.”的方式或 = { }方式
eg: module.exports.name = "张三"
或 module.exports= {name: "张三"}