Trước tiên, bạn phải tìm mô hình bao gồm mô hình phụ mà bạn muốn cập nhật. Sau đó bạn có thể lấy tham chiếu của mô hình phụ để cập nhật dễ dàng. hy vọng nó sẽ giúp ích.
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");
}
});