如何使用 Mongoose 验证电子邮件唯一性
使用 Mongoose,您可以使用 验证 来防止数据库中出现重复项。 验证在 SchemaType 中定义,是一个中间件。 您还可以在模式中创建自己的验证,或者您可以使用 Mongooses 的内置验证。 为防止重复,我们建议使用 unique
属性,因为它告诉 Mongoose 每个文档对于给定的路径都应该有一个 唯一的 值。 它是创建 MongoDB 唯一索引的简写,在本例中:email
。
如果你等待建立索引,你可以使用 Mongoose 的基于承诺的事件, Model.init()
, 如下所示:
const User = mongoose.model('User', mongoose.Schema({
email: {
type: String,
required: true,
match: /.+\@.+\..+/,
unique: true
}
}));
await User.create([
{ email: 'gmail@google.com' },
{ email: 'bill@microsoft.com' },
{ email: 'test@gmail.com' }
]);
await User.init();
try {
await User.create({ email: 'gmail@google.com' });
} catch(error) {
error.message; // 'E11000 duplicate key error...'
}
重要的是要注意 唯一属性 不是验证器。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: Vue 单文件组件
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论