Pertama Anda harus menemukan model termasuk sub model yang ingin Anda perbarui. Kemudian Anda bisa mendapatkan referensi sub model untuk diperbarui dengan mudah. Saya memposting contoh untuk referensi Anda. semoga membantu.
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");
}
});