Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

152
Visualizações
MongoDB $set to update subarray, adding new entry instead of updating

im trying to update an oject in a sub-array and instead of replacing and updating the data. it adds a new enetry.

controller.js:

const updateSubCategory = asyncHandler(async (req, res) => {
  const {
    dataArray
  } = req.body

  const categories = await Category.find({})

  if (categories) {
    await Category.updateOne({
      "SubCats._id": req.params.id
    }, {
      "$set": {
        SubCats: {
          name: dataArray[0],
          image: dataArray[1]
        }
      }
    }, {
      "multi": true
    })
    res.json({
      message: 'sub-category updated'
    })
  } else {
    res.status(404)
    throw new Error('Error')
  }
})
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

I think you need this, but i am not sure, if you dont need this, if you can give sample data and expected output in json.

You can try an example PlayMongo
It updates the fields inside not replace all the embeded document (your query does that).

const updateSubCategory = asyncHandler(async (req, res) => {
  const {
    dataArray
  } = req.body

  const categories = await Category.find({})

  if (categories) {
    await Category.updateOne({
      "SubCats._id": req.params.id
    }, {
      "$set": {
        "SubCats.name" : dataArray[0],
        "SubCats.image" : dataArray[1]
        }
      }
    }, {
      "multi": true
    })
    res.json({
      message: 'sub-category updated'
    })
  } else {
    res.status(404)
    throw new Error('Error')
  }
})
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda