Rails 删除带有标签或评论的 Post

Rails Delete Post with Tags or Comments

我按照本网站上的指南将标签添加到 post。我有问题... http://www.sitepoint.com/tagging-scratch-rails/

每当我删除带有标签的 post 时,我都会收到此错误:

这是我的删除代码:

我仍在学习 rails,每当我对 post 发表评论并尝试删除 post 时,我都会 运行 解决这个问题。

您已在您的数据库上设置参照完整性约束。

table 标签中仍有标签引用了您要删除的 post。

您需要先删除标记,然后才能删除 post。