在 Mongoose 中按 ID 查找文档
在 Mongoose 中, Model.findById()
函数 用于通过其查找一个文档 _id
,findById()
函数接受一个参数,即文档 ID。 它会返回一个 Mongoose 解析为 文档 如果 MongoDB 找到具有给定文档的文档, id
, 或者 null
如果没有找到文件。
const schema = new mongoose.Schema({ _id: Number }, { versionKey: false });
const Model = mongoose.model('MyModel', schema);
await Model.create({ _id: 1 });
// `{ _id: 1 }`
await Model.findById(1);
// `null` because no document was found
await Model.findById(2);
你打调用 findById(_id)
时,Mongoose 会调用 findOne({ _id })
方法,这意味着 findById()
触发器 findOne()
中间件 。
const schema = new mongoose.Schema({ _id: Number }, { versionKey: false });
schema.pre('findOne', function() {
console.log('Called `findOne()`');
});
const Model = mongoose.model('MyModel', schema);
await Model.create({ _id: 1 });
// Prints "Called `findOne()`" because `findById()` calls `findOne()`
await Model.findById(1);
Mongoose 将查询转换为匹配您的架构 。 这意味着如果你的 _id
是一个 MongoDB ObjectId ,你可以通过 _id
作为字符串,Mongoose 会为您将其转换为 ObjectId。
const _id = '5d273f9ed58f5e7093b549b0';
const schema = new mongoose.Schema({ _id: mongoose.ObjectId }, { versionKey: false });
const Model = mongoose.model('MyModel', schema);
await Model.create({ _id: new mongoose.Types.ObjectId(_id) });
typeof _id; // 'string'
// `{ _id: '5d273f9ed58f5e7093b549b0' }`
const doc = await Model.findById(_id);
typeof doc._id; // 'object'
doc._id instanceof mongoose.Types.ObjectId; // true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: Vue 中的计算属性
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论