当我尝试在Knex和Postgres中运行种子时,我仍然会遇到同样的错误。错误是error: insert or update on table "locations" violates foreign key constraint "locations_user_id_fore
ign"
。任何人都可以弄清楚它为什么抛出这个错误?我试过改变一堆东西。谢谢!
用户迁移
exports.up = function(knex, Promise) {
return knex.schema.createTable('users', function(table) {
table.increments()
table.string('email').notNullable();
table.string('password').notNullable();
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('users')
};
地点表
exports.up = function(knex, Promise) {
return knex.schema.createTable('locations', function(table) {
table.increments('id');
table.string('placename').notNullable();
table.float('latitude').notNullable();
table.float('longitude').notNullable();
table.integer('user_id').notNullable().references('id').inTable('users').onDelete('cascade');
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('locations')
};
用户种子
exports.seed = function(knex, Promise) {
// Deletes ALL existing entries
return knex('users').del()
.then(function () {
// Inserts seed entries
return knex('users').insert([
{email: 'allie@gmail.com', password: 'p1'},
{email: 'bob@gmail.com', password: 'p2'},
{email: 'minnie@gmail.com', password: 'p3'}
]);
});
};
位置种子
exports.seed = function(knex, Promise) {
// Deletes ALL existing entries
return knex('locations').del()
.then(function () {
// Inserts seed entries
return knex('locations').insert([
{placename: 'Himeji', latitude: 34.8394, longitude: 134.6939, user_id: 1},
{placename: 'Long Beach', latitude: 33.7701, longitude: 118.1937, user_id: 3},
{placename: 'Seattle', latitude: 47.6253, longitude: 122.3222, user_id: 2}
]);
});
};
答案 0 :(得分:4)
作为答案,因为评论太大了。
错误消息很明显,您违反了foreign key
约束。
这是因为要在locations
中插入一行,您还需要提供一个user_id
,它引用表id
中的列users
。如果users
表中没有该特定用户,则无法在位置中插入user_id
。见这一行
table.integer('user_id').notNullable().references('id').inTable('users').onDelete('cascade');
首先,您必须在user
表中添加users
,然后将其location
插入。