TypeError: Cannot read property 'apply' of undefined at EventEmitter
TypeError: Cannot read property 'apply' of undefined at EventEmitter
我正在构建一个节点 js 应用程序,其中一个页面是 DHTMLX 调度程序。但是,无论何时加载页面,应用程序都会崩溃,并且出现以下错误:
TypeError: 无法读取 EventEmitter 未定义的 属性 'apply'。(/node_modules/mongoskin/lib/collection.js:52:21))
这是错误引用的模块:
SkinCollection.prototype._open = function(callback) {
var collection_args = this._collection_args.concat([callback]);
this._skin_db.open(function(err, db) {
if(err) return callback(err);
db.collection.apply(db, collection_args);
});
}
这是导致错误的 app.js 部分,当我不包含此代码时,日历不会使应用程序崩溃,但我无法将数据发送到我的MongoDB图集集群。
app.js
app.use(express.static(path.join(__dirname, 'public')));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.get('/init', function(req, res){
db.event.insert({
text:"My test event A",
start_date: new Date(2018,8,1),
end_date: new Date(2018,8,5)
});
db.event.insert({
text:"My test event B",
start_date: new Date(2018,8,19),
end_date: new Date(2018,8,24)
});
db.event.insert({
text:"Morning event",
start_date: new Date(2018,8,4,4,0),
end_date: new Date(2018,8,4,14,0)
});
db.event.insert({
text:"One more test event",
start_date: new Date(2018,8,3),
end_date: new Date(2018,8,8),
color: "#DD8616"
});
res.send("Test events were added to the database")
});
app.get('/data', function(req, res){
db.event.find().toArray(function(err, data){
//set id property for all records
console.log(err);
for (var i = 0; i < data.length; i++)
data[i].id = data[i]._id;
//output response
res.send(data);
});
});
app.post('/data', function(req, res){
var data = req.body;
var mode = data["!nativeeditor_status"];
var sid = data.id;
var tid = sid;
delete data.id;
delete data.gr_id;
delete data["!nativeeditor_status"];
function update_response(err, result){
if (err)
mode = "error";
else if (mode == "inserted")
tid = data._id;
res.setHeader("Content-Type","application/json");
res.send({action: mode, sid: sid, tid: tid});
}
if (mode == "updated")
db.event.updateById( sid, data, update_response);
else if (mode == "inserted")
db.event.insert(data, update_response);
else if (mode == "deleted")
db.event.removeById( sid, update_response);
else
res.send("Not supported operation");
});
我过去一周才开始学习 javascript,对编码还很陌生。我不明白为什么会出现此错误。当我 运行 Scheduler 应用程序作为独立功能时,它可以完美运行。只有当我尝试在我的网站上实施它时,它才会抛出此错误。
更新:正确答案
此问题与以下问题重复:
Mongoskin只支持MongoDB2.x,使用MondoDB时出现此错误3.x。
原始(不正确)答案
我自己对 MongoDB 很陌生,但我很确定问题在于您需要将 collection
替换为这一行 table 的实际名称:
db.collection.apply(db, collection_args);
例如,如果 table/collection 的名称是 skin
,则该行将变为:
db.skin.apply(db, collection_args);
(注意当 app.j
对事件 table 执行数据库操作时,它是如何调用 db.event.insert()
,等等...)
我正在构建一个节点 js 应用程序,其中一个页面是 DHTMLX 调度程序。但是,无论何时加载页面,应用程序都会崩溃,并且出现以下错误:
TypeError: 无法读取 EventEmitter 未定义的 属性 'apply'。(/node_modules/mongoskin/lib/collection.js:52:21))
这是错误引用的模块:
SkinCollection.prototype._open = function(callback) {
var collection_args = this._collection_args.concat([callback]);
this._skin_db.open(function(err, db) {
if(err) return callback(err);
db.collection.apply(db, collection_args);
});
}
这是导致错误的 app.js 部分,当我不包含此代码时,日历不会使应用程序崩溃,但我无法将数据发送到我的MongoDB图集集群。
app.js
app.use(express.static(path.join(__dirname, 'public')));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.get('/init', function(req, res){
db.event.insert({
text:"My test event A",
start_date: new Date(2018,8,1),
end_date: new Date(2018,8,5)
});
db.event.insert({
text:"My test event B",
start_date: new Date(2018,8,19),
end_date: new Date(2018,8,24)
});
db.event.insert({
text:"Morning event",
start_date: new Date(2018,8,4,4,0),
end_date: new Date(2018,8,4,14,0)
});
db.event.insert({
text:"One more test event",
start_date: new Date(2018,8,3),
end_date: new Date(2018,8,8),
color: "#DD8616"
});
res.send("Test events were added to the database")
});
app.get('/data', function(req, res){
db.event.find().toArray(function(err, data){
//set id property for all records
console.log(err);
for (var i = 0; i < data.length; i++)
data[i].id = data[i]._id;
//output response
res.send(data);
});
});
app.post('/data', function(req, res){
var data = req.body;
var mode = data["!nativeeditor_status"];
var sid = data.id;
var tid = sid;
delete data.id;
delete data.gr_id;
delete data["!nativeeditor_status"];
function update_response(err, result){
if (err)
mode = "error";
else if (mode == "inserted")
tid = data._id;
res.setHeader("Content-Type","application/json");
res.send({action: mode, sid: sid, tid: tid});
}
if (mode == "updated")
db.event.updateById( sid, data, update_response);
else if (mode == "inserted")
db.event.insert(data, update_response);
else if (mode == "deleted")
db.event.removeById( sid, update_response);
else
res.send("Not supported operation");
});
我过去一周才开始学习 javascript,对编码还很陌生。我不明白为什么会出现此错误。当我 运行 Scheduler 应用程序作为独立功能时,它可以完美运行。只有当我尝试在我的网站上实施它时,它才会抛出此错误。
更新:正确答案
此问题与以下问题重复:
Mongoskin只支持MongoDB2.x,使用MondoDB时出现此错误3.x。
原始(不正确)答案
我自己对 MongoDB 很陌生,但我很确定问题在于您需要将 collection
替换为这一行 table 的实际名称:
db.collection.apply(db, collection_args);
例如,如果 table/collection 的名称是 skin
,则该行将变为:
db.skin.apply(db, collection_args);
(注意当 app.j
对事件 table 执行数据库操作时,它是如何调用 db.event.insert()
,等等...)