続編では、行を作成し、すべての関連付けを一度に次のように行うことができます。
return Product.create({
title: 'Chair',
User: {
first_name: 'Mick',
last_name: 'Broadstone'
}
}, {
include: [ User ]
});
更新に相当するものはありますか?私は試した
model.user.update(req.body.user, {where: {id: req.user.user_id}, include: [model.profile]})
しかし、それはユーザーの更新のみです
作品を作成するためにこれを行う
model.user.create(user, {transaction: t, include: [model.profile]})
最初に、更新するサブモデルを含むモデルを見つける必要があります。その後、サブモデルの参照を取得して、簡単に更新できます。参考のために例を投稿しています。それが役立つことを願っています。
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");
}
});
両方のモデル(製品とプロファイル)を一度に更新する場合。アプローチの1つは次のとおりです。
// this is an example of object that can be used for update
let productToUpdate = {
amount: 'new product amount'
Profile: {
name: 'new profile name'
}
};
Product
.findById(productId)
.then((product) => {
if(!product) {
throw new Error(`Product with id ${productId} not found`);
}
product.Profile.set(productToUpdate.Profile, null);
delete productToUpdate.Profile; // We have to delete this object to not reassign values
product.set(productToUpdate);
return sequelize
.transaction((t) => {
return product
.save({transaction: t})
.then((updatedProduct) => updatedProduct.Profile.save());
})
})
.then(() => console.log(`Product & Profile updated!`))