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

Mongoose - Incrementa un valore all'interno di una matrice di oggetti

Non è possibile incrementare direttamente il valore nel .find interroga se labelOptions è una matrice di oggetti. Per semplificare, dovresti cambiare labelOptions digita da Matrice di oggetti a Oggetto:

"labelOptions": {
    "Bob": 112,
    "Billy": 32,
    "Joe": 45
};

Considera anche l'utilizzo di .findByIdAndUpdate invece di .findOneAndUpdate se stai interrogando con il _id del documento . E poi, puoi ottenere ciò che desideri:

Poll.findByIdAndUpdate(
    id,
    {$inc: {`labelOptions.${labelOption}`: 1 }},
    function(err, document) {
    console.log(err);
});

AGGIORNAMENTO:se sei persistente sull'utilizzo di Array of Objects per labelOptions , esiste una soluzione alternativa:

Poll.findById(
    id,
    function (err, _poll) {

        /** Temporarily store labelOptions in a new variable because we cannot directly modify the document */
        let _updatedLabelOptions = _poll.labelOptions;

        /** We need to iterate over the labelOptions array to check where Bob is */
        _updatedLabelOptions.forEach(function (_label) {

            /** Iterate over key,value of the current object */
           for (let _name in _label) {

               /** Make sure that the object really has a property _name */
               if (_label.hasOwnProperty(_name)) {

                   /** If name matches the person we want to increment, update it's value */
                   if (_name === labelOption) ++_label._name;
               }
           }
        });

        /** Update the documents labelOptions property with the temporary one we've created */
        _poll.update({labelOptions: _updatedLabelOptions}, function (err) {

            console.log(err);
        });
    });