作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个具有电子邮件字段的 Mongoose 模型。如果用户提供了值,我希望它是唯一的,但如果用户未提供任何值,我希望它为空。我在这里找到了一个很好的 mongodb 引用:https://docs.mongodb.com/manual/core/index-partial/#partial-index-with-unique-constraints这可以工作,但我不知道如何让它在 Mongoose 上工作
这就是这个领域现在的样子
email: {
type: String,
index: true,
unique: true
}
最佳答案
在电子邮件路径级别,您只能使用:
email: {
type: String
}
SchemaName.index({ email: 1 }, {
unique: true,
partialFilterExpression: {
'email': { $exists: true, $gt: '' }
}
});
关于mongodb - 如何在 Mongoose 模型上使用 partialFilterExpression,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57433942/
我是一名优秀的程序员,十分优秀!