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.
我想获取已创建文档的 id,而无需在创建文档后进行单独查询来获取文档。我想我需要在创建文档之前手动创建文档的 ID。有没有办法做到这一点?我正在使用mongoose驱动程序。
mongoose
创建新的 mongoose 模型实例后,它的_id值已经设置为保存时的值。例如:
_id
var user = new User(); // user._id is already set. ... user.save();