vous devriez l'utiliser comme ça
// 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!!")
})
})
si itemToUpdate
a un nombre variable de champs, vous pouvez ajouter une option à cet appel en tant que
var options = { field: 'vin_no, model_year, num_owners' }
et transmettez-le comme Vehicle.updateItem(Vehicle.model, itemToUpdate, options, callback)