码迷,mamicode.com
首页 > Web开发 > 详细

nodejs 中es5 模块的几种写法

时间:2016-10-19 13:56:23      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

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 模块的几种写法

标签:

原文地址:http://www.cnblogs.com/xuezizhenchengxuyuan/p/5976770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!