我有这样的对象:
{
buildings: {
"1": {
"l": 0 ,
"r": 0 ,
"s": 0 ,
"type": "GoldMine" ,
"x": 2 ,
"y": 15
} ,
"10": {
"l": 0 ,
"r": 6 ,
"s": 2 ,
"type": "MagicMine" ,
"x": 26 ,
"y": 22
}
} ,
[...]
}
我希望得到类型为" GoldMine"。
的建筑物我尝试使用map
:
r.table("Characters").map(function(row) {
return row("planet")("buildings")
})
使用keys()
我可以迭代它:
r.db("Unnyworld").table("Characters").map(function(row) {
return row("planet")("buildings").keys().map(function(key) {
return "need to get only buildings with type == GoldMine";
})
}).limit(2)
但它会归还所有建筑物。我想只获得类型== GoldMine的建筑物并更改字段x
。
答案 0 :(得分:1)
这样的事情可能有用:
r.table('Characters')
.concatMap(function(doc) {
return doc("planet")("buildings").keys().map(function(k) {
return {id: doc('id'), key: k, type: doc("planet")("buildings")(k)('type'), x: doc("planet")("buildings")(k)('x')}
})
})
.filter(function(building) {
return building('type').eq('GoldMine')
})
.forEach(function(doc) {
return r.table('Characters').get(doc('id'))
.update({
planet: {buildings: r.object(doc('key'), {x: 1111111})}
})
})
基本上使用building
然后concatMap
从filter
创建一个平面数组。使用结果数据,我们可以对其进行迭代并更新为我们想要的值。