0

ブロードキュメントの挿入方法

  {
      "author": "Vic Zhao",
      "text":  "hell..............."
  }

埋め込まれた配列コメントの最初の要素としてブロードキュメントに

{
   name: 'Me',
   comments: [{
      "author": "Joe S.",
      "text": "I'm Thirsty"
   },
  {
      "author": "Adder K.",
      "text":  "old content"
  }]
}
4

1 に答える 1

2

prepend 操作http://www.rethinkdb.com/api/#js:document_manipulation-prependを使用できます

r.table(...).get(...).update({
    comments: r.row('comments').prepend(newEntry)
  }).run(conn, callback)

newEntry は、挿入するデータに置き換える必要があります。

于 2013-06-18T16:56:15.493 に答える