Mongoose中的多文档Upsert

时间:2017-08-05 16:36:59

标签: node.js mongodb mongoose upsert

你好,这是我的问题,

var poolSchema = mongoose.Schema({
        "topic_id": {
            type: Number,
            default: null,
            required: true
        },
        "document_id": {
            type: String,
            default: null,
            required: true
        },
        "project":{
            type:String,
            default: false,
            required: true
        },
        "createddate":{
            type:Date,
            default : Date.now
        }
    }, { collection: "sorguHavuzu" }); 

我有一个池文档数组,每个项目都有不同的字段值,如下所示:

var poolItems = [
                   {document_id :"FBIS3-50136" ,topic_id :"301" , project :"A1"},
                   {document_id :"LA040190-0178" ,topic_id :"302" , project :"A1"},
                   {document_id :"FT934-5418" ,topic_id :"303" , project :"A1"},
                   {document_id :"LA071090-0047" ,topic_id :"304" , project :"A1"}]

这是我的计划:

我想通过document_id字段来插入数组中的项目。所以这是我的更新操作。

var query = {"document_id" : { $in:["FBIS3-50136","LA040190-0178","FT934-5418","LA071090-0047"]}};
Pools.collection.update(query, { $push : { "$ROOT" :  poolItems }  }, { upsert: true, multi : true}, callback);

错误:\'$ ROOT \'中的美元($)前缀字段\'$ ROOT \'对存储无效。

但是在每次尝试时,我都会遇到不同的错误,有没有办法用mongoose更新操作来追加项目? 感谢

1 个答案:

答案 0 :(得分:2)

here中提到的批量upsert实际上是不可能的,以及可能的解决方案。

但是,您可以考虑使用upsert操作为承诺的每个poolItemsasync之类的each方法使用更简单的方法。以下代码应该有效:

var async = require('async');
var Pool = require('/path/to/pool.js');

var poolItems = [
{document_id :"FBIS3-50136" ,topic_id :"301" , project :"A1"},
{document_id :"LA040190-0178" ,topic_id :"302" , project :"A1"},
{document_id :"FT934-5418" ,topic_id :"303" , project :"A1"},
{document_id :"LA071090-0047" ,topic_id :"304" , project :"A1"}];

async.each(poolItems, function(poolItem, callback){
    Pool.findOneAndUpdate({document_id: poolItem.document_id}, poolItem, {upsert:true}, function(err, doc){
        if(err){
         return callback(err);
        }
        return callback();
    });
}, function(err){
    if(err){
        console.log(err);
    }
    else{
        console.log("All pool items have been upserted!")
    }
});