8

节点 js,帆 js,水线。插入后我需要将值更新(或推送)到以下架构中

我正在使用带有水线和 mongodb 的sailsjs。

{
"countries": {
"states": [
{
"statename": "state",
"districts": [
{
"distname": "district",
"cities": [
{
"cityname": "Hyderabad",
"places": [
                {
                  "placename": "hitechcity"
                }
              ]

          }
        ]
      }
    ]
  }
]
}
}

我需要知道如何更新它更新后我需要这样的东西

{
"countries": {
"states": [
{
"statename": "state",
"districts": [
{
"distname": "district",
"cities": [
{
"cityname": "Hyderabad",

              "places": [
                {
                  "placename": "hitechcity"
                },
                {
                  "placename": "someother place"
                }
              ]

          }
        ]
      }
    ]
  }
]
}
}

请有人帮助我。

4

2 回答 2

16

好问题!你会想要使用addToCollection()

await User.addToCollection(23, 'roles')
.members([3, 5, 6]);

在我的手机上完成,很抱歉有任何错别字:)

于 2018 年 8 月 7 日编辑,以反映 Sails v1 中的最佳实践。更多信息:https ://sailsjs.com/documentation/reference/waterline-orm/models/add-to-collection

于 2013-08-10T22:35:05.233 回答
4

我发现使用 Sails 我无法使用 mikermcneil 答案。我不得不去本地:

Runtestunit.native(function(err, runtestunit){
     runtestunit.find({sessionID : sessionData.id_}).toArray(function(err, results) {
         if (err) return res.serverError(err);
         runtestunit.update({ _id: results[0]._id },
           { $push: { screenshots: filename } },
           function(err, screenshots) {
           if(err) sails.log.err( err)
         else sails.log.info("Item pushed")
       })
    });
});

仅供参考,我正在通过 sessionData.id_ 键查询我的数据

于 2014-07-09T17:47:18.523 回答