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
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!
Mine
schema
is like that, you can try the following and see if it works