假设我们有这个文件:
doc = {'foo': 1, 'bar': 2, id: 123}
我该怎么做才能拥有一对具有 foo 和 bar 值的 id 并将它们分配给 2 个变量?我需要这个,以便我可以在复杂的查询中使用这些变量,而不必多次复制/粘贴相同的精确 reql 命令。
这是我尝试过的:
(
r.expr(doc) # doc as input
.do(lambda d: [
# create the pair
[d['id'], r.uuid(d['id'].coerce_to('string'))],
# create the "values"
d.without('id').values()
])
.do(lambda x, y: # unpacking should happen here
# x should be the pair
# y should be the values of foo and bar
r.branch(
# do something with x,
# use y here,
...)
)
.map(lambda z:
# use also x and y here
# etc...
.run(conn)
)
但我无法完成这项工作。这个想法只是为变量分配值,以便在查询中使用,以提高可读性。有什么想法?