我正在 Rails 中创建一个简单的讨论板。每一个新Topic
的创造也Reply
包括内容的第一个。这是我当前的架构。
Topic
> title:string
> user_id: integer
has_many :replies
accepts_nested_attributes_for :replies
Reply
> topic_id: integer
> user_id: integer
> content: text
belongs_to :topic
电流topics/_form.html.haml
是这样的
= form_for @topic fo |f|
= f.text_field :title
= f.fields_for :replies
= reply.text_area :content
问题是在尝试编辑主题时,我看到所有回复列表都是可编辑的,因为它fields_for :replies
在部分表单中迭代字段。我应该只看到第一个。
如果主题是新的,那么将这种迭代限制为当前的第一个可用回复,同时构建一个新的回复,有什么方便的方法?
我最终得到了这样的东西,但我想应该有更好的方法。
# Topic model
has_one :owner_reply, class_name: 'Reply'
accepts_nested_attributes_for :owner_reply
# Form partial view
= form_for @topic fo |f|
- reply_resource = (@topic.new_record? ? :replies : :owner_reply)
= f.text_field :title
= f.fields_for :replies
= reply.text_area :content
这些是完整的TopicsController#create
和update
行动。
def create
@board = Board.find(params[:board_id])
@topic = @board.topics.new(topic_params)
@topic.user_id = current_user.id
@topic.replies.each { |reply| reply.user_id = current_user.id }
if @topic.save
respond_to do |format|
format.html { redirect_to topic_path(@topic) }
end
else
render :new
end
end
def update
@topic = Topic.find(params[:id])
if @topic.update_attributes(topic_params)
respond_to do |format|
format.html { redirect_to topic_path(@topic) }
end
else
render :edit
end
end