谁能想到一种优雅的方式update
和replace
一条线?
我想使用r.row.without
删除字段并在同一查询中更新。
就像是:
r.db('db').table('table').get('item_id')
.update({ field_a:'value_a'})
.replace(r.row.without(r.args(['field_b'])))`
简单的链接会很好,但这不起作用(更新返回更改结果)。
谁能想到一种优雅的方式update
和replace
一条线?
我想使用r.row.without
删除字段并在同一查询中更新。
就像是:
r.db('db').table('table').get('item_id')
.update({ field_a:'value_a'})
.replace(r.row.without(r.args(['field_b'])))`
简单的链接会很好,但这不起作用(更新返回更改结果)。