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

Come impostare il campo mongo da variabile

Se hai un solo valore da aggiornare

updateUserData: function(userId, key, value) {
            this.unblock();
            let set = {};
            set[key] = value;
            Meteor.users.update({
                _id: userId
            }, {$set: set});

            return true;

        }