9
我是Nodes.js noob,我試圖讓我的頭繞着模塊構造。因此到目前爲止,我有一個模塊(testMod.js)定義此類結構:模塊導出類Nodes.js
var testModule = {
input : "",
testFunc : function() {
return "You said: " + input;
}
}
exports.test = testModule;
我試圖調用testFunc()方法正是如此:
var test = require("testMod");
test.input = "Hello World";
console.log(test.testFunc);
但我得到一個類型錯誤:
TypeError: Object #<Object> has no method 'test'
我做錯了什麼?
真棒謝謝。 – travega