sql >> Database >  >> NoSQL >> MongoDB

MongoDB:woordenboek bijwerken in document

van mongoDb-website kijk bij "Velden instellen in ingesloten documenten"

To specify a <field> in an embedded document or in an array, use dot notation.
For the document matching the criteria _id equal to 100, the following
operation updates the make field in the details document:


db.products.update(
{ _id: 100 },
{ $set: { "details.make": "zzz" } })

in jouw geval

db.collection.update(
     {_id:ObjectId("1")},
     { $set: { "occurrences.12": "3", "occurrences.17": "2" }})


  1. Mongo-aggregatie en MongoError:uitzondering:BufBuilder probeerde te groeien() tot 134217728 bytes, voorbij de limiet van 64 MB

  2. Paginering implementeren met MongoDB, Express.js &Slush

  3. BSON Type ObjectId converteren naar JSON (opslaan in Mongodb) -Java

  4. Ongeldige ns bij verbinding met mongodb-server