Node某个JS导出方法变量以及在其他地方引用的例子

//modelJs.js
var name="miyue";
function doSomething() {
    console.log("做一些事情");
}
module.exports={name:name,doSomething:doSomething}
//requireJs.js
var modelJs=require("./modelJs");
console.log(modelJs);//{ name: 'miyue', doSomething: [Function: doSomething] }
console.log(modelJs.name);//miyue
modelJs.doSomething();//做一些事情

 

上一篇:JAVA设计模式(系列) 工厂模式


下一篇:Java学习笔记之抽象类与接口