我有一个MongoDB数据库,我正在使用NodeJS查询,我有一个集合“服务”,其中包含2个字段,其中包含一个dbref到另外2个集合(“服装”和“总线”),因此通常位置文档类似对此:
{
"_id" : ObjectId("..."),
"idService" : ...,
"codeRoute" : ...,
"codeCh" : "...",
"codeConv" : "...",
"codeLigne" : "...",
"date" : ISODate("..."),
"appareil" : {
"_id" : ObjectId("..."),
"_class" : "com.transtu.documents.Appareil",
"reference" : "...",
"societe" : DBRef("societe", ObjectId("..."))
},
"bus" : {
"_id" : ObjectId("..."),
"_class" : "com.transtu.documents.Bus",
"code" : "...",
"immatriculation" : "...",
"reference" : "...",
"localisation" : {
"x" : ...,
"y" : ...
},
"societe" : DBRef("societe", ObjectId("..."))
}
}
我使用“mongodb”npm模块在NodeJs中尝试了以下代码:
findService = {};
findService.date = 'ISODate(' + new Date(service.date).toISOString() + ')';
findService.appareil = {_id: 'new ObjectID(' + service.appareil._id + ')'};
findService.bus = {_id: 'new ObjectID(' + service.bus._id + ')'};
findService.codeCh = service.codeCh;
findService.codeConv = service.codeConv;
serviceCollection.find(findService).toArray(function (err, docs) {
if (err) {
console.error('error:............... ' + JSON.stringify(err));
} else {
//console.log('docs:............ ' + JSON.stringify(docs));
if (docs.length == 0) {
console.log('not found'); serviceCollection.insertOne(service, function (res, err) {
if (err) {
//console.error('err: ............: ' + JSON.stringify(err));
} else {
//console.log('res: **************: ' + JSON.stringify(res));
}
});
} else {
console.log('found');
console.log('docs: ****************************** ' + JSON.stringify(docs));
}
}
});
此代码无效,我总是得到“找不到”的答案,但是使用mongo客户端CMD我发现了一个适合我的代码:
db.service.find({"date": ISODate("..."), "codeCh": "...", "codeConv": "...", "appareil._id": ObjectId("..."), "bus._id" : ObjectId("...")}).pretty()
此查找查询的目标是确保服务集合中5个字段组合的唯一性,我尝试添加这样的复合索引:
db.service.ensureIndex( {date:1, appareil:1, bus:1, codeCh:1, codeConv:1}, { unique: true, dropDups: true } )
但它也不起作用......
如何处理仅包含这5个字段的查询查询,或如何在集合设置中使这些字段的组合唯一?
答案 0 :(得分:0)
如果你看到你的代码。您的console.log('not found');
条件中有else
。因此,只要没有错误,您就会在not found
中打印console
。我认为你的代码工作正常。
serviceCollection.find(findService)
.toArray(function (err, docs) {
if (err) {
console.error('error:............... ' + JSON.stringify(err));
} else {
console.log('not found');//this will print "not found" if there is no error.
//rest of the code
}
});
在检查console.log('not found');
的长度时,您应该docs
。
serviceCollection.find(findService)
.toArray(function (err, docs) {
if (err) {
console.error('error:............... ' + JSON.stringify(err));
} else {
if (docs.length == 0) {
console.log('not found'); //this should be here
serviceCollection.insertOne(service, function (res, err) {
if (err) {
//console.error('err: ............: ' + JSON.stringify(err));
} else {
//console.log('res: **************: ' + JSON.stringify(res));
}
});
} else {
console.log('found');
console.log('docs: ****************************** ' + JSON.stringify(docs));
}
}
});