1

我正在使用 nodejs 为 mongodb 连接和插入记录。当我尝试使用 insertMany 并保存记录时出现以下错误。

(节点:10140)UnhandledPromiseRejectionWarning:未处理的承诺拒绝(拒绝 id:1):MongoError:写入配置服务器的批量大小必须为 1,找到 23

下面是我的代码片段:

MongoClient.connect(url, function(err, db) {

    if(err){
    console.log('Error is ' + err);
    }
    else{
     console.log("Connected correctly to server");
    try {
    var col = db.collection('offshift');
        col.insertMany(result).then(function(result){
         res.json({message:'Data saved succesfully!',error_code:0, data: result});
       });

    } catch (e) {
       console.log(e);
    }
     db.close();
    }
});
4

2 回答 2

1

我试图在管理员中插入记录。然后我更改了数据库名称并为新数据库创建了具有读/写权限的用户。使用正确的数据库名称和新创建的访问用户更改了我的连接字符串。这解决了这个问题。

您可以参考以下链接了解更多详情: https ://www.compose.com/articles/avoid-storing-data-inside-admin-when-using-mongodb/

于 2017-06-13T04:02:24.847 回答
0

如果不使用 promise 就无法使用.then().then()因此,您可以使用callback函数代替。可以试试下面的代码

var col = db.collection('offshift');
  col.insertMany(result, function(error, result){
       if(error){
          console.log('Error is on insert', error);
        } else
           res.json({message:'Data saved succesfully!',error_code:0, data: result});
});

或者

您可以使用.exec()该返回承诺,然后可以使用.then()

var col = db.collection('offshift');
        col.insertMany(result).exec().then(.....)
于 2017-06-07T05:48:25.197 回答