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

Rimozione dell'oggetto con ObjectId dall'array in Mongoose/MongoDB

Il tuo problema è qui nella funzione di aggiornamento

User.update(
        {'_id':user_id}, // you not need to use ObjectId here
        { $pull: { '_carts': { _id: cart_id }}},
        function(err,result){
    // can you give here the output of console.log(result);
   }
    )
    User.save();