MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Data.model.updateItem ist keine Funktion TypeError:Data.model.updateItem ist keine Funktion

Sie sollten es so verwenden

// assuming value is object with all the fields. 
var itemToUpdate = {
    vin_no: value.vin_no
}

Vehile.model.findOne(itemToUpdate, function(error, vehicleObject) {

    Vehicle.updateItem(
        vehicleObject,
        value,
        function (err) {
            // err can be Error object or an object with 'error' and/or 'detail' property
            if (err) return res.json(err);

            res.json({
                status: "success"
            });

            console.log("Succeeded!!")
        })
})

wenn itemToUpdate eine variable Anzahl von Feldern hat, können Sie diesem Aufruf eine Option als

hinzufügen
var options = { field: 'vin_no, model_year, num_owners' }

und übergeben Sie dies als Vehicle.updateItem(Vehicle.model, itemToUpdate, options, callback)