gpt4 book ai didi

node.js - Mongoose InsertMany - 如何获取插入文档的数量?

转载 作者:太空宇宙 更新时间:2023-11-04 03:14:31 24 4
gpt4 key购买 nike

使用Mongoose进行InsertMany后,我们如何知道有多少文档已成功进入数据库?

  Employees.insertMany(employees)
.then(function(docs) {
// do something with docs
console.log("Number of documents inserted: " + ... );
})
.catch(function(err) {
// error handling here
console.log("Failed to insert Bulk..." + err.message);
});

最佳答案

插入完成后,它会返回一个包含所有文档的数组,因此您可以使用 length 属性来查找有多少文档:

Employees.insertMany(employees)
.then(function(docs) {
console.log(docs.length);
})
.catch(function(err) {
console.log(err);
});

关于node.js - Mongoose InsertMany - 如何获取插入文档的数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58545259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com