在1個module.export中包含許多方法和模塊中的每個函數的module.export之間是否有不同的效率?1 module.exports與module.exports爲每個功能?
module.exports={
func1: function (req, res, next) {},
func2: function (req, res, next) {}
}
與
module.exports.func1 = function(){};
module.exports.funct2 = function(){};
我被告知,以調查是否有2個選項之間的差異。 比其他方式更好嗎? 謝謝。