【问题标题】:PG::UndefinedColumn: ERROR: column comments.post_id does not existPG::UndefinedColumn: 错误: 列 comments.post_id 不存在
【发布时间】:2015-10-13 00:02:32
【问题描述】:

我似乎无法弄清楚为什么我不断收到此错误。我正在尝试将评论表单添加到我正在制作的博客中,但它不起作用。以下是完整错误的内容。

ActiveRecord::StatementInvalid in Posts#show

显示 /Users/ipbyrne/FirstRailsApp/blog/app/views/posts/show.html.erb 其中第 17 行提出:

PG::UndefinedColumn: 错误: 列 cmets.post_id 不存在 第 1 行:从 "cmets" WHERE "cmets"."post_id" 中选择 COUNT() ... ^ : SELECT COUNT() FROM "cmets" WHERE "cmets"."post_id" = $1

</p>

   <div id="comments">
       <h2><%= @post.comments.count %> Comments</h2> <-- Says it breaks here
       <%= render @post.comments %>

       <h3>Add a comment:</h3>

据我所知,schema.rb 文件中的一个表中缺少一列?以防万一,这里的情况就是我的样子

# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20140911230918) do

  create_table "comments", force: true do |t|
    t.string   "name"
    t.text     "body"
    t.integer  "post_id"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "comments", ["post_id"], name: "index_comments_on_post_id"

  create_table "posts", force: true do |t|
    t.string   "title"
    t.text     "body"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "users", force: true do |t|
    t.string   "email",                  default: "", null: false
    t.string   "encrypted_password",     default: "", null: false
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",          default: 0,  null: false
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "users", ["email"], name: "index_users_on_email", unique: true
  add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true

end

【问题讨论】:

  • 您需要创建一个新的迁移以将 post_id 列添加到 cmets 表中,然后迁移您的数据库,然后创建一个新的评论。
  • 有没有我这样做的功能?
  • @Isaac 的答案是否有帮助?
  • 是的,它确实最终成为迁移问题。很抱歉,我花了这么长时间才回来!

标签: ruby-on-rails ruby postgresql


【解决方案1】:

您可能只需将该列添加到您的comments 表中。

您可以通过终端创建迁移来添加列:

$ rails g migration add_post_id_column_to_comments post:belongs_to
$ rake db:migrate

您想使用post:belongs_to 的原因是Rails 会自动附加_id 后缀并在cmets 表中创建一个外键以相互引用。

所以基本上这部分迁移post:belongs_to 会将列post_id 添加到您的cmets 表中。 (同样的事情,例如cars:belongs_to,你会得到cars_id等)

这样你就可以像这样引用帖子的 cmets:

@post.comments

您的@post.comments 现在失败的原因是它正在寻找您尚未创建的post_id 列,这可能也是因为您可能尚未定义Post 和@987654333 之间的关系@模型。


如果您还没有这样做,您只需要快速定义每个模型中的关系:

  • 一个帖子有很多 cmets。
  • 评论belongs to 一个帖子。

了解行话?

在您的 Post 模型中,只需添加

class Post < ActiveRecord::Base
    has_many :comments   # make sure it's pluralized
end

在您的 Comment 模型中,添加

class Comment < ActiveRecord::Base
    belongs_to :post  # and this one is singularized
end

然后尝试再次运行您的应用。告诉我进展如何。

【讨论】:

    【解决方案2】:

    是的,您在 Comment 模型上缺少字段 post_id,它会告诉 Rails 哪些 cmets 属于哪些帖子。

    您可以通过从命令行生成迁移来添加它,如下所示:

    rails generate migration AddPostIdToComments post:references
    rake db:migrate
    

    【讨论】:

    • 我是如何创建评论的,它使用帖子作为参考,因此在创建评论模型时,它使其属于帖子
    • 我不确定你在说什么——你是在问如何创建引用帖子的评论?还是说你已经这样做了?
    • @user1852651 这不准确; post:referencespost:belongs_to 在这种情况下实际上是同义词。 AFAIK 没有用于多态关联的内置生成器。
    • @eirikir 看看这个:guides.rubyonrails.org/…
    • @user1852651 链接的文章没有提到生成器
    猜你喜欢
    • 2013-12-15
    • 2015-07-18
    • 1970-01-01
    • 1970-01-01
    • 2016-06-01
    • 2020-01-16
    • 2016-07-11
    • 2022-11-28
    • 2015-11-24
    相关资源
    最近更新 更多