【发布时间】:2012-09-21 18:59:25
【问题描述】:
我收到一条错误消息 - “未知属性:news_id”,但我不明白问题出在哪里。我有新闻控制器,我想为每个新闻创建 cmets。我希望有人能帮助我。提前致谢。
schema.rb
create_table "comments", :primary_key => "ID", :force => true do |t|
t.integer "Author_ID"
t.integer "News_ID", :null => false
t.string "Content", :limit => 500, :null => false
t.datetime "Date", :null => false
end
评论模型:
belongs_to :news
新闻模型:
has_many :comments
【问题讨论】:
-
这可能是 Rails 的多元化问题。
Comment模型有一个名为new_id的字段? -
我的评论表有这些列 - ID、News_ID、内容
标签: ruby-on-rails ruby-on-rails-3 rails-activerecord