跟踪嵌套对象couchdb更新处理程序

时间:2017-05-02 16:07:26

标签: javascript couchdb

我需要使用唯一键来编辑嵌套对象!在couhdb文档中,但我不能这样做。 我的文档结构:

<div class="col-sm-6" style="padding: 0px;"> Something </div>

我希望将一些对象推入状态数组。

更新处理函数:

{
 "_id":"20",
 "_rev":"rev",
 tasks": {
   "20.t01": {
       "name": "test",
       "status": [],
       "tasks": {
           "20.t01t01": {
               "status": [                   
               ],
               "name": "name",
               "tasks": {
                   "20.t01t01t01": {
                       "status": [],
                       "name": "name",
                       "tasks": {
                           "20.t01t01t01t01": {
                               "name": "name",
                               "status": [],
                               "tasks": {
                               }
                           }
                       }
                   }
               }
           }
       }
     }
   }
 }

我如何在couchdb中为这个结构编写设计文档更新函数? 坦克!

0 个答案:

没有答案