8

我需要在节点js中随机生成objectid。有什么方法可以创建。

4

3 回答 3

40

如果您的意思是 MongoDB ObjectID,请尝试以下操作:

var ObjectID = require('mongodb').ObjectID;

var objectId = new ObjectID();
于 2012-10-09T11:45:25.860 回答
7

生成 mongoDB 对象 id 的另一种方法是。

function objectId() {
    const os = require('os');
    const crypto = require('crypto');

    const secondInHex = Math.floor(new Date()/1000).toString(16);
    const machineId = crypto.createHash('md5').update(os.hostname()).digest('hex').slice(0, 6);
    const processId = process.pid.toString(16).slice(0, 4).padStart(4, '0');
    const counter = process.hrtime()[1].toString(16).slice(0, 6).padStart(6, '0');

    return secondInHex + machineId + processId + counter;
}
于 2019-11-08T08:07:23.170 回答
0

在 mongodb 中创建 ObjectId:

const {ObjectId} = require('mongodb'); 

// Method 1:
const myId = new ObjectId(); // No argument
// say, myId = ObjectId("507f1f77bcf86cd799439011")

// Access the Hexadecimal String from the ObjectId
console.log(ObjectId("507f1f77bcf86cd799439011").str); 
// 507f1f77bcf86cd799439011

// Method 2: Specify your own unique Hexadecimal String (12 bytes long)
const myId = new ObjectId("507f191e810c19729de860ea"); // with argument
// myId = ObjectId("507f191e810c19729de860ea")
于 2021-11-23T12:39:05.750 回答