0

假设我们有这个文件:

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)
)

但我无法完成这项工作。这个想法只是为变量分配值,以便在查询中使用,以提高可读性。有什么想法?

4

1 回答 1

1

您可以使用 绑定 ReQL 中的多个变量r.do,例如:

r.expr(doc).do(lambda d: # doc as input
  r.do(
    [d['id'], r.uuid(d['id'].coerce_to('string'))],
    d.without('id').values(),
    lambda x, y:
      # x is the pair
      # y is the values of bar and foo
      ...))
于 2016-05-22T21:34:27.303 回答