我需要一些帮助在现有模型中创建一个非常简单的论坛。
我想要的游戏页面,有一个迷你论坛,可以在其中创建一些主题和对此主题的一些评论。一开始我只是实现主题。
这是我遇到的错误:
Mysql2::Error: Column 'user_id' cannot be null: INSERT INTO `topics` (`game_id`, `question`, `user_id`) VALUES (1, 'asd', NULL)
这是我的主要模型:
游戏.rb
class Game < ActiveRecord::Base
attr_accessible :name
validates :user_id, presence: true
validates :name, presence: true, length: { maximum: 50 }
belongs_to :user
has_many :topics, dependent: :destroy
end
主题.rb
class Topic < ActiveRecord::Base
validates_presence_of :question
validates_presence_of :game_id
attr_accessible :question, :user_id
validates :question, length: {maximum: 50}, allow_blank: false
belongs_to :game
belongs_to :user
end
主题控制器.rb
def create
@game = Game.find(params[:game_id])
@topic = @game.topics.create(params[:topic])
@topic.user_id = current_user.id
respond_to do |format|
if @topic.save
format.html { redirect_to @game, notice: 'Topic was successfully created.' }
else
format.html { render action: "new" }
end
end
end
游戏/show.html.erb
<h2>Topics</h2>
<% @game.topics.each do |topic| %>
<p>
<b>Question:</b>
<%= topic.question %>
</p>
<% end %>
<h2>Add a topic:</h2>
<%= form_for([@game, @game.topics.build]) do |f| %>
<div class="field">
<%= f.label :question %><br />
<%= f.text_field :question %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
谢谢 ;)