4

我正在使用 Node.js 本机驱动程序。以下工作正常

db.collection("test").insert({hello:'world_safe'}, {safe: true}, function(err, result) {
    if (err) throw err;
    db.collection("test").insert({hello:'world_safe'}, {safe: true}, function(err, result) {
        if (err) throw err;
        db.close();
    });
});

我在数据库中得到以下信息

{“你好”:“world_safe”,“_id”:ObjectId(“4fe978c8b8a5937d62000001”)} {“你好”:“world_safe”,“_id”:ObjectId(“4fe978c8b8a5937d62000002”)}

但是,当我进行如下调整时

var json = {hello:'world_safe'};
db.collection("test").insert(json, {safe: true}, function(err, result) {
    if (err) throw err;
    db.collection("test").insert(json, {safe: true}, function(err, result) {
        if (err) throw err;
        db.close();
    });
});

我收到以下错误

MongoError: E11000 重复键错误索引:

为什么我会收到错误消息?

4

2 回答 2

5

驱动程序在第一次插入时_id为您的对象添加了一个键json,因此在第二次插入时,您json_id女巫是重复的。

https://github.com/mongodb/node-mongodb-native/blob/master/lib/mongodb/collection.js

// Add id to each document if it's not already defined
    if (!(Buffer.isBuffer(doc)) && doc['_id'] == null && self.db.forceServerObjectId != true) {
      doc['_id'] = self.pkFactory.createPk();
    }
于 2012-06-26T09:00:09.353 回答
0

我同意 CD,但解决方案比这更容易:

/* ... before insert */

if(typeof(collection._id) != 'undefined')
        delete collection._id;

/* ... now insert */
于 2013-09-03T04:05:42.290 回答