【发布时间】:2021-10-21 16:46:55
【问题描述】:
我正在尝试使用 Sequelize Sync 功能插入数据。但我得到了这个错误。问题是有时数据成功输入,有时没有
错误
config/sequelize.js:295
SequelizeForeignKeyConstraintError: insert or update on table "states" violates foreign key
constraint "states_country_id_fkey"
at Query.formatError
(d:\projects\petrolpump\node_modules\sequelize\lib\dialects\postgres\query.js:315:16)
at Query.run (d:\projects\petrolpump\node_modules\sequelize\lib\dialects\postgres\query.js:87:18)
at processTicksAndRejections (internal/process/task_queues.js:97:5) {name:
'SequelizeForeignKeyConstraintError', parent: error: insert or update on table "states" viol…ign key
constraint "states_country_id_fkey"
…, original: error: insert or update on table "states" vio…gn key constraint "states_country_id_fkey"
…, sql: 'INSERT INTO "states" ("id","name","country_id"…
untry_id","is_active","createdAt","updatedAt";', parameters: Array(5), …}
这是查询
sync function initial() {
try {
var country = await db.country.findOne({ where: { name: 'India' } });
if (!country) {
db.country.create({
name: "U.S.",
is_active: "true"
});
}
var state = await db.state.findOne({ where: { name: 'Gujarat' } });
if (!state) {
await db.state.create({
name: "California",
country_id: "1",
is_active: "true"
});
}
} catch (e) {
console.log(e)
}
}
db.sequelize.sync({ force: true }).then(() => {
console.log("Drop and re-sync db.");
initial();
});
这是协会
db.state.hasMany(db.city, {
foreignKey: 'state_id'
});
db.country.hasMany(db.state, {
foreignKey: 'country_id',
});
我曾尝试在模型文件中使用参考,但出现正常错误
【问题讨论】:
标签: node.js postgresql sequelize.js