在节点中插入新的mongo文档时保存没有ObjecID部分的_id

时间:2015-08-31 08:38:07

标签: javascript node.js mongodb meteor bson

我注意到,当我在Meteor中插入文档时,它将 _id 保存为"_id" : "kEdtp42GSupay8tf2"

但是当我使用nodejs插入时,它使用以下代码保存为"_id" : ObjectId("55e40c30422ba1aa2906f526")

MongoClient.connect('mongodb://localhost:3001/meteor', function(err, db) {
    if(err) throw err;

    var doc = { title: 'post6',
                body: "6 Fake St"
                };

    db.collection('posts').insert(doc, {w:1}, function(err, doc) {
        if(err) throw err;

        console.dir(doc);

        db.close();
    });
});

我应该如何重构代码,以便插入新的id s

格式为"_id" : "kEdtp42GSupay8tf2"。 ?

2 个答案:

答案 0 :(得分:3)

请参阅此链接中的idGeneration选项:

return PartialView("~/Areas/Configurations/Views/Supplier/Vouchers/_CardVoucherDetails.cshtml", model);

Meteor使用idGeneration的字符串值。但是如果要将其更改为默认的ObjectId生成,则可以设置idGeneration选项。

答案 1 :(得分:1)

您可以编写随机密钥生成器函数并将其设置为_id。

function generateUUID() {
   var d = new Date().getTime(),
     uuid = 'xxxxxxxxxxxx4xxxxxxxxxxxxxxxxxx'.replace(/[xy]/g,
       function(c) {
          var r = (d + Math.random()*16)%16 | 0;
          d = Math.floor(d/16);
          return (c==='x' ? r : (r&0x7|0x8)).toString(16);
       });
   return uuid;
}

然后使用此设置为_id

var doc = { title: 'post6',
            body: "6 Fake St"
            _id : generateUUID()};

db.collection('posts').insert(doc, {w:1}, function(err, doc) {
    if(err) throw err;

    console.dir(doc);

    db.close();
});