我有一个具有此文档格式的收藏集:
{
"_id" : ObjectId("5c51fe3a6abdf0e5cd78f658"),
"0" : {
"id" : 1,
"name" : "carlos"
},
"1" : {
"id" : 2,
"name" : "foo"
},
"2" : {
"id" : 3,
"name" : "Jhon Doe"
},
"3" : {
"id" : 4,
"name" : "Max"
}
}
访问属性的唯一方法是执行foreach循环,然后在内部进行另一个。
db.getCollection('tutorial').find({}).forEach( (users) => {
for(user in users){
print("ID-> " + users[user].id, " Name->" + users[user].name);
}
});
但是我只能打印结果,还有另一种使用find返回值的方法?
谢谢。
答案 0 :(得分:0)
您必须拆分操作。首先获取集合,然后运行一个函数以返回您想要的值:
let collection = db.getCollection('tutorial').find({});
let name = () => {collection.forEach( (users) => {
for(user in users){
if(users[user].name == "foo"){
return ("ID-> " + users[user].id, " Name->" + users[user].name);
}
}
})};
或者只是创建一个变量并在运行循环时进行设置
let name;
db.getCollection('tutorial').find({}).forEach( (users) => {
for(user in users){
name = ("ID-> " + users[user].id, " Name->" + users[user].name);
}
});
或类似的东西
尽管所有这些情况似乎都是处理mongo集合的一种奇怪方法。如果您无法使用常规的find方法访问数据,我绝对建议您重组集合。