我想不出寫功能自動計算(構造函數)時node.js中所需的文件..功能自動計算(構造函數)時的node.js
是這樣... file.js
所需的文件module.exports = {
index: function() {
//code here
}
};
app.js
var file=require("./file");
res.send(file.index());
我想要什麼......
module.exports = {
main :__constructor()
{
this.name="blabla";
},
index: function() {
//code here
this.name // will be used this place name variable
}
};