我正在尝试使用knex中的外键创建以下表:
评论
+----+---------+-------------------+------------+------------+------------+-----------+
| id | post_id | comment | is_deleted | createdAt | updatedAt | deletedAt |
+----+---------+-------------------+------------+------------+------------+-----------+
| 1 | 2 | This is a comment | false | 16.10.2017 | 16.10.2017 | |
+----+---------+-------------------+------------+------------+------------+-----------+
发布
+----+-----------------+------------------+---------+------------+------------+-----------+
| id | titel | description | deleted | createdAt | updatedAt | deletedAt |
+----+-----------------+------------------+---------+------------+------------+-----------+
| 1 | This is a titel | Test Description | false | 16.10.2017 | 16.10.2017 | |
+----+-----------------+------------------+---------+------------+------------+-----------+
| 2 | Titel Test | Test Description | false | 16.10.2017 | 16.10.2017 | |
+----+-----------------+------------------+---------+------------+------------+-----------+
我创建了以下迁移:
comments.js
exports.up = function (knex, Promise) {
return knex.schema.createTable("comments", function (t) {
t.increments("id").unsigned().primary().references('id').inTable('posts')
t.text("comment").nullable()
t.boolean("is_deleted").nullable()
t.dateTime("createdAt").notNull()
t.dateTime("updatedAt").nullable()
t.dateTime("deletedAt").nullable()
})
}
posts.js
exports.up = function (knex, Promise) {
return knex.schema.createTable('posts', function (t) {
t.increments('id').unsigned().primary();
t.string('title').notNull();
t.text('description').nullable();
t.boolean('deleted').nullable();
t.dateTime('createdAt').notNull();
t.dateTime('updatedAt').nullable();
t.dateTime('deletedAt').nullable();
});
};
最后,我试图用假数据为表格播种:
const faker = require("faker")
const knex = require("../db/knexfile.js")
const _ = require("lodash")
const postNumber = 50
const commentNumber = 150
function getRandomPostId() {
const numberOfPosts = knex("posts").count("title")
return _.random(0, numberOfPosts)
}
exports.seed = function(knex, Promise) {
return Promise.all([
knex("posts").del()
.then(function() {
const posts = []
for (let index = 0; index < postNumber; index++) {
posts.push({
titel: faker.lorem.sentence(),
description: faker.lorem.sentence(),
createdAt: faker.date.recent(),
updatedAt: faker.date.recent(),
deletedAt: faker.date.recent(),
deleted: faker.random.boolean(),
tags: faker.random.arrayElement(["tag1", "tag2", "tag3", "tag4", ]),
})
}
return knex("posts").insert(posts)
}),
knex("comments").del()
.then(function() {
const comments = []
for (let index = 0; index < commentNumber; index++) {
comments.push({
comment: faker.lorem.sentence(),
createdAt: faker.date.recent(),
deletedAt: faker.date.recent(),
updatedAt: faker.date.recent(),
is_deleted: faker.date.recent(),
})
}
return knex("comments").insert(comments)
})
])
}
但是,我收到以下错误:
Using environment: development
Error: ER_NO_REFERENCED_ROW_2: Cannot add or update a child row: a foreign key constraint fails (`c9`.`comments`, CONSTRAINT `comments_id_foreign` FOREIGN KEY (`id`) REFERENCES `posts` (`id`))
at Query.Sequence._packetToError (/home/ubuntu/workspace/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14)
at Query.ErrorPacket (/home/ubuntu/workspace/node_modules/mysql/lib/protocol/sequences/Query.js:77:18)
at Protocol._parsePacket (/home/ubuntu/workspace/node_modules/mysql/lib/protocol/Protocol.js:279:23)
at Parser.write (/home/ubuntu/workspace/node_modules/mysql/lib/protocol/Parser.js:76:12)
at Protocol.write (/home/ubuntu/workspace/node_modules/mysql/lib/protocol/Protocol.js:39:16)
at Socket.<anonymous> (/home/ubuntu/workspace/node_modules/mysql/lib/Connection.js:103:28)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at readableAddChunk (_stream_readable.js:176:18)
at Socket.Readable.push (_stream_readable.js:134:10)
at TCP.onread (net.js:547:20)
我的外键约束是否错误?
有什么建议我收到这个错误吗?
感谢您的回复!
答案 0 :(得分:1)
在迁移创建方面,尝试分离post_id
外键生成。看起来它试图将comments.id
用作主键和外键,而不是引用post_id
的名为posts.id
的单独列
<强>迁移强>
exports.up = function (knex, Promise) {
return knex.schema.createTable('posts', function (t) {
t.increments().unsigned().primary();
t.string('title').notNull();
t.text('description').nullable();
t.boolean('deleted').nullable();
t.dateTime('createdAt').notNull();
t.dateTime('updatedAt').nullable();
t.dateTime('deletedAt').nullable();
});
};
exports.up = function (knex, Promise) {
return knex.schema.createTable("comments", function (t) {
t.increments().unsigned().primary();
t.text("comment").nullable();
t.boolean("is_deleted").nullable();
t.dateTime("createdAt").notNull();
t.dateTime("updatedAt").nullable();
t.dateTime("deletedAt").nullable();
// column with name post_id references posts.id
t.foreign("post_id").references('id').inTable('posts');
// or
// t.foreign("post_id").references('posts.id');
})
};
关于错误,看起来这主要是时间问题。 Promise.all()
不按顺序运行/执行/启动promise任务。这意味着在创建评论时,它可能没有要关联的有效posts.id
。通过更新迁移,您最好等到所有帖子都已创建,获取现有的帖子ID值,并使用这些值创建具有有效post_id
约束的评论。 Knex方法pluck()
在这里派上用场,因为您可以获取posts.id
值的数组。我也考虑将这个分解为多个种子,因为我已经遇到过将大于约100插入到给定表中的问题。您可以通过在每个循环上插入来解决这个问题,这将花费更长时间,但似乎没有经历相同的限制。如果每个评论都需要与帖子相关联,那么现在的种子似乎没有发生,那么就不会有任何post_id或类似信息被插入。下面的代码在每次迭代中获取有效的随机posts.id
,并将其分配给comments.post_id
,满足约束条件。
我所看到的播种顺序如下:
<强>种子:强>
exports.seed = function(knex, Promise) {
return knex("comments").del()
.then(() => {
return knex("posts").del();
})
.then(() => {
const posts = [];
for (let index = 0; index < postNumber; index++) {
posts.push({
title: faker.lorem.sentence(),
description: faker.lorem.sentence(),
createdAt: faker.date.recent(),
updatedAt: faker.date.recent(),
deletedAt: faker.date.recent(),
deleted: faker.random.boolean(),
tags: faker.random.arrayElement(["tag1", "tag2", "tag3", "tag4", ]),
});
}
return knex("posts").insert(posts);
})
.then(() => {
return knex('posts').pluck('id').then((postIds) => {
const comments = [];
for (let index = 0; index < commentNumber; index++) {
comments.push({
comment: faker.lorem.sentence(),
createdAt: faker.date.recent(),
deletedAt: faker.date.recent(),
updatedAt: faker.date.recent(),
is_deleted: faker.date.recent(),
post_id: faker.random.arrayElement(postIds)
})
}
return knex("comments").insert(comments);
});
});
};
种子中的 注意:,帖子创建中的title
拼写错误为titel
。不确定您是否要titel
使用title
,但需要保持一致。
希望这有帮助!
答案 1 :(得分:0)
看起来您需要更正注释表的映射,如下所示,以便在post_id列上添加约束。你的映射似乎已经错误地创建了外键(注释的表id引用了post的id)。
exports.up = function (knex, Promise) {
return knex.schema.createTable("comments", function (t) {
t.increments("id").unsigned().primary()
t.integer("post_id").references('id').inTable('posts')
t.text("comment").nullable()
t.boolean("is_deleted").nullable()
t.dateTime("createdAt").notNull()
t.dateTime("updatedAt").nullable()
t.dateTime("deletedAt").nullable()
})
}
其次,您需要考虑按名称的自然顺序选择迁移/种子文件。在您的情况下,comments.js
文件的执行时间早于posts.js
文件,导致插入失败的原因很明显。
要解决此问题,您可以将post.js
重命名为20170812_10_posts.js
,将comments.js
重命名为20170812_20_comments.js
(对于e..g)。前缀<date>_<seq>_
仅仅是建议的约定。只要名称符合预期的自然顺序,您就可以在命名迁移/种子文件时遵循任何约定。
相关问题: https://github.com/tgriesser/knex/issues/993
希望这会有所帮助。