javascript - How to set user accounts not to be duplicated in mongodb?
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-05-02 09:25:53
0
2
717

User registration has two attributes, name and address. How to set up the database so that these two attributes are equal without duplication.
What I mean is that I don’t want one address to correspond to multiple usernames

Thank you

曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(2)
曾经蜡笔没有小新

If I understand correctly, create a unique matching index:

.createIndex( { name: 1, address: 1 }, { unique: true } )

It is recommended to check the official MongoDB manual to improve work efficiency.

Love MongoDB, Have Fun!


巴扎黑
var studentSchema = new Schema({
  school:String,
  nickname:String,
  username:{
    type:String,
    unique:true
  },.....
}

Mine schema is like that, you can try the following and see if it works

name:{
type:String,
unique:true
},
address:{
type:String,
unique:true
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template