module.exports返回的是一個{}, expoerts是對module.exports的一個引用; 即: module.exports = { abc: ‘abc’ }; exports.hehe = ‘hehe’; 等價於: module.exports = { abc: ‘abc’, ...
module.exports返回的是一個{},
expoerts是對module.exports的一個引用;
即:
module.exports = {
abc: ‘abc’
};
exports.hehe = ‘hehe’;
等價於:
module.exports = {
abc: ‘abc’,
hehe: ‘hehe’
}