0

我正在尝试从所需的文件 Account.js 创建一个对象。Node.js 在线显示错误var test = new account();:未定义帐户。我在这里做错了什么?

// Account.js
module.exports = function Account() {
  console.log("THIS SHOULD WORK");
}

// app.js
require('./Account');
var test = new Account();
4

1 回答 1

2

请注意, require 不像importor include。这就是你所缺少的:

// app.js
var Account = require('./Account');
var test = new Account();
于 2013-07-04T13:37:55.593 回答