0

我似乎在博客教程的完成版本中成功实现了 yii 用户模块,现在遇到了一个错误,它正在寻找 author_id 以匹配 tbl_user 表中的 id,尽管你开始使用 yii 用户模块一个新表 tbl_users..so 除了第一个之外的其他用户不匹配并且无法创建帖子..这是弹出的错误。

Error 500
CDbCommand failed to execute the SQL statement: SQLSTATE[23000]: Integrity constraint     violation: 1452 Cannot add or update a child row: a foreign key constraint fails     (`yii`.`tbl_post`, CONSTRAINT `FK_post_author` FOREIGN KEY (`author_id`) REFERENCES `tbl_user` (`id`) ON DELETE CASCADE)

所以我找不到它看起来与表'tbl_user'中的ID匹配的地方......

我到处看了看,有人能指出我正确的方向吗?

4

1 回答 1

3

这意味着有一个键 tbl_post.author_id 与 tbl_user.id 不同。

一个让您更好理解的示例是,您尝试插入 author_id = 5 的帖子,但在表 tbl_user 中,您只有假设 id 的值:1、2、3、7、9 ... 反正没有 5。

于 2012-10-14T11:04:28.437 回答