Eerst moet je een model vinden inclusief submodel dat je wilt bijwerken. Daarna kun je de referentie van het submodel krijgen om gemakkelijk bij te werken. Ik plaats een voorbeeld ter referentie. hoop dat het zal helpen.
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");
}
});