作者GrantHill33 (葛兰特希尔)
看板Ruby
标题[问题] sub model的view以及controller储存方法
时间Wed Aug 20 13:58:54 2014
新手一枚 继续发问
有个MODEL是问题
每个问题可以有多个答案
model长这样
class Question < ActiveRecord::Base
has_many :answers
end
class Answer < ActiveRecord::Base
belongs_to :question
end
想请问在Question的show page上要怎麽使用form来让使用者填写answer
以及在接收post的controller里怎麽储存这笔资料进去DB
假设form长这样
<%= form_for([@question, @answer], url: answers_new_path,
html: { method: :post }) do |f| %>
<%= f.hidden_field :question_id, :value => @question.id %>
<%= f.text_area :content, autofocus: true %>
<% end %>
controller action那边要怎麽接收参数并储存到DB呢?
谢谢~
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 210.242.155.192
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/Ruby/M.1408514337.A.1C1.html