我在NodeJS中使用Mongoose操作MongoDB数据库。我遇到的一个问题是,当我定义架构时,我想将该架构中的字段设置为唯一。我根据the instructions of the official document设置了该字段,但是没有用。有人知道定义架构时,如何定义字段值是唯一的?我使用的Mongoose版本是V5.2.13。
答案 0 :(得分:2)
您只需添加unique: true
例如:
const mySchema = new Schema({
test: {
type: String,
unique: true
}
});