我的后端具有此功能:

exports.updatePacienteByCodigo = function (req, res) {
let codPaciente = req.params.codPaciente;
let params = req.body; // This is the data what come from frontend = {'testRealizados':['example'], 'respuestas':['example'], 'codMedico':'example'}
Paciente.findOneAndUpdate({ codPaciente: codPaciente }, {
    '$push': {
        'testsRealizados': params.testsRealizados,
        'respuestas': params.respuestas,
        'codMedico': {'$ne':params.codMedico} //here is the problem
    }
}).then(
    pacienteEncontrado => {
        if (!pacienteEncontrado) {
            res.status(404).send({ accion: 'updatePaciente', mensaje: 'Ese paciente no existe' });
        } else {
            res.status(200).send({ accion: 'updatePaciente', mensaje: 'Paciente actualizado correctamente' });
        }
    }
).catch(err => { res.status(500).send({ accion: 'updatePaciente', mensaje: 'Error ' + err }) })
};


此查询向我抛出此错误"Error CastError: Cast to [string] failed for value \"[{\"$ne\":\"o8qjdeli\"}]\" at path \"codMedico\""}

我想做的是,如果codMedico在数据库中的值与参数codMedico的值相同,则不更新该字段。

我试过了,但是没有用。我没有主意,所以我在这里。谢谢。

[解决了]

我尝试使用$ addToSet方法,它的工作原理就像@Plancke在评论中告诉我的那样。

最佳答案

我尝试使用$ addToSet方法,它的工作原理就像@Plancke在评论中告诉我的那样。

10-04 20:06