在更新嵌套对象时遇到问题。像这样的示例数据
{
"status":{
"draft":{
"status":"draft",
"rating":4
},
"review":{
"status":"review",
"rating":4
},
"publish":{
"status":"publish",
"rating":4
}
}
}
在上述对象中,有时草稿/评论/发布是空对象,需要检查条件并更新其中的 评分 该对象。我已经尝试过这种方法,但是出错了。
查询:
r.db('sample_db').table('table').filter({id:'xxxxxxx'})
.update({"draft": r.row('status').map(function(data){
return r.branch(
data('draft').hasFields({'status':true}),
data.merge({ "rating": 100 }),
data
)})
})
错误:
{
"deleted": 0 ,
"errors": 1 ,
"first_error": "Cannot convert OBJECT to SEQUENCE" ,
"inserted": 0 ,
"replaced": 0 ,
"skipped": 0 ,
"unchanged": 0
}
谁能帮助我解决此查询。预先感谢。
答案 0 :(得分:0)
我不确定您要在这里做什么。但是要根据草稿元素中是否包含状态字段来更新其等级,您可以执行以下操作:
r.db('sample_db').table('table').get('idxxxxxxx')
.update(function(e){
return r.branch(e('status')('draft').hasFields('status'),
{'status':{'draft':{'rating':100}}}, e)
})