mongodb 批量插入 - Javascript 不工作

mongodb batch insert - Javascript not working

我想将一堆记录插入到一​​个集合中,但我想使用 "insertMany()" 像批处理一样一次插入一个文档而不是一个文档。我写的脚本如下:

var batch = [];
for (i=0; i<10; i++) { 
    names=["exam", "essay", "quiz"]; 
    for (j=0;j<3;j++) { 
        batch += '\n{ student : ' + i + ', type : "' + names[j] + '", score : ' + Math.round(Math.random()*100) + '}' ;
        if (mod i%3 == 0) {
            batch = batch.slice(0, batch.lenght(-1));
            db.scores.insertMany( batch )
            batch=[];
        }
    }
}

以上代码无效。有两个问题:首先,数组项周围有双引号,其次,"slice" 没有生效。

需要帮助修复 Javascript。

这里有几个问题:

the array item have double quotes around them

batch += '\n{ student : ' + i + ', type : "' + names[j] + '", score : ' + Math.round(Math.random()*100) + '}' ;

您想创建一个对象而不是一个字符串。 batch = { student: i, type: names[j], score: ..} 将为您创建对象。

the "slice" is not taking effect

batch = batch.slice(0, batch.lenght(-1));

您拼错了 lengthlength 是 属性 而不是函数。 batch.slice() 将复制数组(但您正在重置它,因此实际上没有必要)。