为什么我不能在 Rethinkdb 的数组中追加一个对象?

Why can't I append an object in an array in Rethinkdb?

我正在尝试将对象附加到 rethink 中的数组中。这是我尝试附加它的方式:

rethink('shifts')
        .get(shiftId)
        .update(row => row("milestones").default([]).append({
            dateAchieved: date,
            phaseType: phasetype.toUpperCase()
        })).run(rethinkConnection)

我得到的错误是:

UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): ReqlQueryLogicError: Expected type TABLE but found DATUM:
"shifts" in:
r("shifts").get("5d1b607f-e670-4eb5-b873-6e800f8ae8f8").update(function(var_15) { return var_15("milestones").default([]).append({"dateAchieved": r.ISO8601("2012-04-12T06:00:00.000Z"), "phaseType": "PILOT"}); })
  ^^^^^^^^  

它期待 'TABLE',但找到 'DATUM' 是什么意思?我如何才能将对象插入到数组中?

你需要做

rethink.table(“shifts”)

使用字符串调用 rethink 命名空间只是 returns 一个表达式