Najpierw musisz znaleźć model, w tym model podrzędny, który chcesz zaktualizować. Następnie możesz uzyskać odniesienie do modelu podrzędnego do łatwej aktualizacji. Zamieszczam przykład w celach informacyjnych. mam nadzieję, że to pomoże.
var updateProfile = { name: "name here" };
var filter = {
where: {
id: parseInt(req.body.id)
},
include: [
{ model: Profile }
]
};
Product.findOne(filter).then(function (product) {
if (product) {
return product.Profile.updateAttributes(updateProfile).then(function (result) {
return result;
});
} else {
throw new Error("no such product type id exist to update");
}
});