我知道在最新版本的Mongoose中你可以将多个文件传递给create方法,或者在我的情况下更好地传递一组文档。
var array = [{ type: 'jelly bean' }, { type: 'snickers' }];
Candy.create(array, function (err, jellybean, snickers) {
if (err) // ...
});
我的问题是数组的大小是动态的,所以在回调中有一个创建对象的数组会很有帮助。
var array = [{ type: 'jelly bean' }, { type: 'snickers' }, ..... {type: 'N candie'}];
Candy.create(array, function (err, candies) {
if (err) // ...
candies.forEach(function(candy) {
// do some stuff with candies
});
});
不在文档中,但这样可能吗?
答案 0 :(得分:37)
您可以通过arguments
访问回调的变量参数列表。所以你可以这样做:
Candy.create(array, function (err) {
if (err) // ...
for (var i=1; i<arguments.length; ++i) {
var candy = arguments[i];
// do some stuff with candy
}
});
答案 1 :(得分:11)
根据GitHub上的this ticket,如果你在使用create()
时提供点差,你提供一个数组和一个参数范围,Mongoose 3.9和4.0将返回一个数组。
答案 2 :(得分:7)
使用Mongoose v5.1.5,我们可以使用 insertMany()方法传递数组。
const array = [
{firstName: "Jelly", lastName: "Bean"},
{firstName: "John", lastName: "Doe"}
];
Model.insertMany(array)
.then(function (docs) {
response.json(docs);
})
.catch(function (err) {
response.status(500).send(err);
});
答案 3 :(得分:3)
从 Mongoose v5 开始,您可以使用 insertMany
根据 the mongoose site 它比 .create()
快:
用于验证文档数组并将它们插入到
MongoDB,如果它们都有效。此函数比 .create()
快
因为它只向服务器发送一个操作,而不是一个
每个文件。
完整示例:
const mongoose = require('mongoose');
// Database connection
mongoose.connect('mongodb://localhost:27017/databasename', {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true
});
// User model
const User = mongoose.model('User', {
name: { type: String },
age: { type: Number }
});
// Function call, here is your snippet
User.insertMany([
{ name: 'Gourav', age: 20},
{ name: 'Kartik', age: 20},
{ name: 'Niharika', age: 20}
]).then(function(){
console.log("Data inserted") // Success
}).catch(function(error){
console.log(error) // Failure
});
答案 4 :(得分:0)
通过集合db的插入函数, 例如:
Model.collection.insert(array, function(err, list) {
if (err) {
throw err;
}
console.log("\nlist:", list);
});