代码之家  ›  专栏  ›  技术社区  ›  j-p

mongodb-更新集合上的嵌套值

  •  0
  • j-p  · 技术社区  · 6 年前

    如果我有像这样的物体。。。

    user : {
        _id: ObjectId('234wer234wer234wer'),
        occupation: 'Reader',
        books_read: [
            {
               title: "Best book ever",
                _id: "123qwe234wer345ert456rty"
            },
            {
               title: "Worst book ever",
                _id: "223qwe234wer345ert456rty"
            },
            {
               title: "A Tail of Two Cities",
                _id: ObjectId("323qwe234wer345ert456rty")
            }
        ]
    }
    

    我想把'u id的类型从string改为ObjectId

    我该怎么做呢。??

    我以前做过这个…但这是在处理非嵌套项-我需要更改一个嵌套值

     db.getCollection('users')
    .find({
      $or: [
        {occupation:{$exists:false}},
        {occupation:{$eq:null}}
      ]
    })
    .forEach(function (record) {
      record.occupation = 'Reader';
      db.users.save(record);
    });
    

    任何帮助-我试图避免在应用服务器上写一系列循环来进行数据库调用-所以我希望在'mongo'中直接得到一些东西

    1 回复  |  直到 6 年前
        1
  •  0
  •   klhr    6 年前

    没有办法做(不 $rename )引用现有字段时更新文档上的操作-- MongoDB: Updating documents using data from the same document

    find &安培; each )重新创建具有正确的\u id类型的文档。要查找要更新的子文档,可以使用 $type 操作员。像这样的查询 db.coll.find({nestedField._id: {$type: 'string' }}) $match &安培; $unwind 只获取子文档

    db.coll.aggregate([
      { $match: {'nestedField._id': {$type: 'string' }}}, // limiting to documents that have any bad subdocuments
      { $unwind: '$nestedField'}, // creating a separate document in the pipeline for each entry in the array
      { $match: {'nestedField._id': {$type: 'string' }}}, // limiting to only the subdocuments that have bad fields
      { $project: { nestedId: 'nestedField._id' }} // output will be: {_id: documentedId, nestedId }
    ])
    
    

    我试图避免在应用服务器上写一系列循环来进行数据库调用-所以我希望直接在“mongo”中使用一些东西

    你呢 直接在mongo上运行js代码以避免调用api,但我认为没有任何方法可以避免在文档上循环。