心灵美面包

文章
5
资源
0
加入时间
3年0月8天

js的exports

//写法1exports.hello = function(){ console.log(‘world’);}//写法2var f = { hello : function(){ console.log(‘world’); }}module.exports = f;假设我们写的这个模块的文件名为hello.js,执行下面的代码var h = require(‘hel...