Първо трябва да намерите модел, включително подмодел, който искате да актуализирате. След това можете да получите справка за подмодел, който да актуализирате лесно. Публикувам пример за ваша справка. надявам се, че ще помогне.
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");
}
});