标签:
var me=require(‘./myModule.js‘); me.hello("mei");
模块myModule.js
this.hello=function(name){ console.log("hello"+name); } //或写成 // function hello(name){ // console.log("hello"+name); // } // exports.hello=hello;
node一下test.js
标签:
原文地址:http://www.cnblogs.com/tinyphp/p/4922920.html