Rethinkdb通过一个查询和条件多次更新

时间:2015-06-24 14:08:41

标签: javascript updates rethinkdb

如何使用javascript实现一个查询和条件的多个更新?

例如,我的文档:

[
    {
        "Author": "Auto",
        "Number": 5,
        "RandomText": "dddbd",
        "Tag": "Srebro",
        "id": "10fbd309-5a7a-4cd4-ac68-c71d7a336498"
    },
    {
        "Author": "Auto",
        "Number": 8,
        "RandomText": "cccac",
        "Tag": "Srebro",
        "id": "37f9694d-cde8-46bd-8581-e85515f8262f"
    },
    {
        "Author": "Auto",
        "Number": 6,
        "RandomText": "fffaf",
        "Tag": "Srebro",
        "id": "b7559a48-a01a-4f26-89cf-35373bdbb411"
    }
]

这是我的疑问:

UpdateIndex()
   {
      this.r.table(this.params.table).update((row) => {
         let result;

         console.log(this.r.expr([row]));

         this.r.branch(
               this.r.row(this.Index2).lt(10),
                       result = "Lucky",
                       result = "Good"
                      );
         /*
         if(this.r.row("Number").lt(3)) result = "Bad";
         else if (this.r.row("Number").lt(5)) result = "Poor";
         else if (this.r.row("Number").lt(10)) result = "Lucky";
         else if (this.r.row("Number").lt(20)) result = "Good";
         else if (this.r.row("Number").lt(50)) result = "Great";
         else result = "Mystic";
         */

         console.log(result);

         return this.r.object(this.Index2, result);
      }).run(this.conn, this.CheckResult.bind(this));
  }

为什么我要这样做?我创建了第二个索引(this.Index2 ='Opinion'),现在我想用我的条件描述的值填充这个索引。 但是每个文档都是相同的值(例如:坏)。如何更新文档,但是为每个文档运行条件,并使用一个查询?

1 个答案:

答案 0 :(得分:1)

分配给那样的局部变量(在您的情况下为result)不适用于RethinkDB的驱动程序构建要发送到服务器的查询对象的方式。当您编写上述代码时,您将在本地变量中将文字字符串存储一次(而不是在服务器上每行一次),然后将该文字发送到您在底部返回的查询中的服务器功能。你也不能以你想要的方式使用console.log;在客户端上运行,但您的查询在服务器上执行。您可能会发现http://rethinkdb.com/blog/lambda-functions/对于了解客户端对您传递给update等命令的匿名函数的作用非常有用。

您应该使用do代替变量绑定:

r.table(params.table).update(function(row) {
  return r.branch(r.row(Index2).lt(10), "Lucky", "Good").do(function(res) {
    return r.object(Index2, res);
  });
})