在RethinkDB中,我有一个表authors
,其中包含以下布局:
{
id: 12,
videos: [1,2,3]
}
现在我用这样的对象获得新作者:
{
id: 12,
videos: [4,5]
}
如果作者现已存在,我想将新视频4
和5
添加到视频列表中。
如果作者不存在,只需插入文档即可。
我的方法如下,但它没有用。
r.table('authors').getAll(4, 3, 2, 1, {index: 'id'})
.replace(function(author, index) {
return r.branch(
author.eq(null),
{
id: index,
videos: [1,2,3]
},
author
);
})
- >响应:
{
"deleted": 0 ,
"errors": 3 ,
"first_error": "Expected 2 arguments but found 1." ,
"inserted": 0 ,
"replaced": 0 ,
"skipped": 0 ,
"unchanged": 0
}
谢谢!
答案 0 :(得分:2)
你的逻辑非常好。这只是一些语法问题。
鉴于作者,如果作者不存在,请插入它,否则,使用您的逻辑附加视频数组,这是我的想法:
var author = {
id: 12,
videos: [9, 10]
};
r.table('authors').insert(author).do(
function (doc) {
return r.branch(doc('inserted').ne(0),
r.expr({inserted: 1}),
r.table('authors').get(author["id"]).update(function(doc) {
return {videos: doc('videos').union(author["videos"])}
})
)
}
)
如果插入是成功的,这意味着我们没有相同id
的文档,我们不必做任何事情。否则,我们将更新文档并将视频附加到其中。
要更新多个作者的数组,我们可以使用foreach
和expr
将数组转换为ReQL对象。但是,在这种情况下,我们使用bracket
来获取字段,而不是像JavaScript对象中那样使用[]
var authors = [{
id: 12,
videos: [90, 91]
},{
id: 14,
videos: [1, 2]
}];
r.expr(authors).forEach(function(author) {
return r.table('authors').insert(author).do(
function (doc) {
return r.branch(doc('inserted').ne(0),
r.expr({inserted: 1}),
r.table('authors').get(author("id")).update(function(doc) {
return {videos: doc('videos').union(author("videos"))}
})
)
}
)
})
答案 1 :(得分:1)
这样的事情应该这样做:
r([4, 3, 2, 1]).foreach(function(id) {
return r.table('authors').get(id).replace(function(row) {
return r.branch(row.eq(null), {id: id, videos: [1, 2, 3]}, row);
});
});
答案 2 :(得分:0)
lambda for replace方法只有一个参数。但是你也试图传递2个参数:author
,index
。