ObjectId.toString()
ObjectId.toString()
string返回 的
ObjectId()
表示形式。
兼容性
可以使用 ObjectId.toString()
查找托管在以下环境中的部署:
MongoDB Atlas:用于云中 MongoDB 部署的完全托管服务
MongoDB Enterprise:基于订阅、自我管理的 MongoDB 版本
MongoDB Community:源代码可用、免费使用且可自行管理的 MongoDB 版本
例子
如下示例:
生成新的
ObjectId()
并将其存储在变量myObjectId
中。使用
toString()
方法创建myObjectId
的字符串表示。将字符串表示存储在变量
myObjectIdString
中。
在 mongosh
中运行以下命令:
myObjectId = ObjectId("507c7f79bcf86cd7994f6c0e") myObjectIdString = myObjectId.toString()
该操作会返回以下字符串:
507c7f79bcf86cd7994f6c0e
要确认 myObjectIdString
的类型,请使用 typeof
JavaScript 操作符:
typeof myObjectIdString
该操作返回以下内容:
string