सबसे पहले आपको उप मॉडल सहित मॉडल ढूंढना होगा जिसे आप अपडेट करना चाहते हैं। फिर आप आसानी से अपडेट करने के लिए उप मॉडल का संदर्भ प्राप्त कर सकते हैं। मैं आपके संदर्भ के लिए एक उदाहरण पोस्ट कर रहा हूं। आशा है कि यह मदद करेगा।
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");
}
});