Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试浏览 mongodb 的 javascript 文档,但结果为空: http ://api.mongodb.org/js/current/index.html
返回的数据存储项目似乎没有任何文档....
还有其他地方可以看吗?
您是否只是在寻找有关 mongodb 中 ObjectId 的信息?
http://docs.mongodb.org/manual/core/object-id/
它的文档在这里。
data_oid { "$oid": "<id>" }
贝壳:
ObjectId( "<id>" )
笔记:
<id> is a 24-character hexadecimal string.
它是REST API扩展的一部分。它是一个ObjectId,映射到旨在更紧密地表示 BSON ObjectId 结构的结构(因为在 JavaScript 中没有 ObjectID 的等价物,因为它是一个 12 字节的数字)。