当前位置:  开发笔记 > 编程语言 > 正文

在我的收藏中组合两个独特的字段

如何解决《在我的收藏中组合两个独特的字段》经验,为你挑选了1个好方法。

我正在使用以下Mongoose模型:

var Test = db.model('Test', db.Schema({
        one: { type: String, required: true },
        two: { type: String, required: true }
    },
    { strict: false })
);

它需要两个字段,one并且two,和strict:false因为可以有其他的领域有不确定的名字.

我想组合onetwo是唯一的.这意味着可能有多个文档具有相同one或相同two,但它们都不应具有相同one two组合.

这可以用Mongoose实现吗?



1> chridam..:

您可以对复合索引强制执行唯一约束,并且可以使用index()模式方法在Mongoose中执行此操作,模式方法在模式级别定义索引:

var testSchema = db.Schema({
    "one": { "type": String, "required": true },
    "two": { "type": String, "required": true }
}, { "strict": false });

testSchema.index({ "one": 1, "two": 1}, { "unique": true });
var Test = db.model("Test", testSchema );

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有