Hvis du vil indsætte et dokument, hvis det ikke findes, kan du bruge upsert
mulighed i update()
metode:
collection.update(_query_, _update_, { upsert: true });
Se dokumenter for upsert adfærd.
Et eksempel med $exists
operatør.
Lad os sige, at du har 6 dokumenter i din samling:
> db.test.find()
{ "_id": ObjectId("5495aebff83774152e9ea6b2"), "a": 1 }
{ "_id": ObjectId("5495aec2f83774152e9ea6b3"), "a": [ ] }
{ "_id": ObjectId("5495aec7f83774152e9ea6b4"), "a": [ "b" ] }
{ "_id": ObjectId("5495aecdf83774152e9ea6b5"), "a": [ null ] }
{ "_id": ObjectId("5495aed5f83774152e9ea6b7"), "a": [ 0 ] }
{ "_id": ObjectId("5495af60f83774152e9ea6b9"), "b": 2 }
og du vil finde dokumenter, der har et bestemt felt "a"
), kan du bruge find()
metode med $exists
operatør (node dokumenter
). Bemærk:dette vil også returnere dokumenter, hvilket felt er et tomt array.
> db.test.find( { a: { $exists: true } } )
{ "_id": ObjectId("5495aebff83774152e9ea6b2"), "a": 1 }
{ "_id": ObjectId("5495aec2f83774152e9ea6b3"), "a": [ ] }
{ "_id": ObjectId("5495aec7f83774152e9ea6b4"), "a": [ "b" ] }
{ "_id": ObjectId("5495aecdf83774152e9ea6b5"), "a": [ null ] }
{ "_id": ObjectId("5495aed5f83774152e9ea6b7"), "a": [ 0 ] }