首页 > 代码库 > nodejs 中es5 模块的几种写法

nodejs 中es5 模块的几种写法

1. module.exports.func = function(){}

2. module.exports.field = ‘‘;

3. module.exports = function(arg1,arg2){    return {func:function(){  return arg1 + arg2  } }     }

4. module.exports = {field:xxxx, func:function(){}}

nodejs 中es5 模块的几种写法