1

「update」という名前のjosnがあり、次のような埋め込みリスト「コメント」があります。

{
   id: "update/0",
    //comments contains elements with type:comment
    comments: [{
       id:"comment/0"
       content:"old first level comment content..."
       children:[{
                      id:"comment/00",
                      content:""old second level comment content...",
                      children[...]
                  }
                 ]

   }]
 }

質問は次のとおりです。

1, How to replace "old first level comment content..." with "new first level
   comment content..." by ids "update/0" and "comment/0"?

2, How to replace "old second level comment content..." with "new second level
   comment content..." by ids "update/0","comment/0" and "comment/00"?
4

1 に答える 1

0

まず、探しているクエリ:

r.table("update").get("update/0").update(function(doc) {
    return doc.merge({
        comments: doc("comments").map(function(comment) {
            return r.branch(
                comment("id").eq("comment/0"),
                comment.merge({
                    content: "new first level comment content..."
                }),
                comment
            )
        })
    })
}).run(...)

二つ目:

r.table("update").get("update/0").update(function(doc) {
    return doc.merge({
        comments: doc("comments").map(function(comment) {
            return r.branch(
                comment("id").eq("comment/0"),
                comment.merge({
                    children: comment("children").map(function(child) {
                        return r.branch(
                            child("id").eq("comment/00"),
                            child.merge({
                                content: "new second level comment content..."
                            }),
                            child
                        )
                    })
                }),
                comment
            )
        })
    })
}).run(...)

結合を行うために、データを複数のテーブルに分割する必要があるでしょう。あなたの場合、テーブル「更新」とテーブル「コメント」。テーブルのコメントは、子のためにそれ自体を結合できます。

詳細については、次を参照してください。

ご不明な点がございましたら、お気軽にお問い合わせください。

于 2014-02-28T21:54:17.233 に答える