我似乎在博客教程的完成版本中成功实现了 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匹配的地方......
我到处看了看,有人能指出我正确的方向吗?