我正在为 NodeJS 使用 MongoDB 本机驱动程序,并且无法转换ObjectID
为string
.
我的代码如下所示:
db.collection('user', function(err, collection) {
collection.insert(data, {safe:true}, function(err, result) {
var myid = result._id.toString();
console.log(myid);
)};
});
我在 StackOverflow 上尝试过各种建议,例如:
myid = result._id.toString();
myid = result._id.toHexString();
但它们似乎都不起作用。
我正在尝试将其转换ObjectID
为base64
编码。
不确定我是否在 Mongo 本机驱动程序下遇到了支持的功能。