我将MongoDB驱动程序v1.4.34与Node.js v0.12.0一起使用。那么,使用toString和toHexString方法将ObjectID转换为String有什么区别吗?

最佳答案

toHexString方法以24字节的十六进制字符串表示形式返回ObjectID id。

// Create a new ObjectID
var objectId = new ObjectID();
// Verify that the hex string is 24 characters long
assert.equal(24, objectId.toHexString().length);

您无需对toString调用ObjectId的结果进行base64编码,因为它已作为十六进制数字返回。您也可以调用:_id.toHexString()直接获取十六进制值。单击此链接以查看MongoDB源(toString just wraps toHexString)。

关于javascript - MongoDB native : is there any difference between toString and toHexString methods?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29030618/

10-09 22:18