sql >> Database teknologi >  >> NoSQL >> MongoDB

Tilføj matrixværdier til MongoDB, hvor element ikke er i matrix

Du kan prøve med bulkWrite operation i mongodb

Account.bulkWrite(
  req.body.accountTemplates.map((data) => 
    ({
      updateOne: {
        filter: { _id: req.account._id, 'templates.name' : { $ne: data.name } },
        update: { $push: { templates: { $each : data } } },
        upsert : true
      }
    })
  )
})



  1. Konfiguration af MongoDB-CR-godkendelse som standard på MongoDB 3.x

  2. node res.render ændrer visning, men ikke url

  3. Filtrer efter land og fritekstsøg mongodb ved hjælp af mongoose

  4. Lagring af en forespørgsel i Mongo