我有一个课程模型和一个修订模型。创建课程时,会创建其第一个修订版(模型具有 has_many through: 关系)。用户应该能够通过更新旧版本来创建新版本 - 但更新将保存到新版本中。
目前我的课程和第一个修订版本通过嵌套形式正确保存。我想知道的是 - 我如何创建一个“新修订”表单来执行更新表单的功能,但将结果保存到新修订?(新修订所依据的教训将保持不变。)
编辑:使用下面我更新的(希望更简洁)代码,保存新的修订,但我从未被定向到表单。我被直接发送到个人资料页面,在那里我可以看到修订列表。我怎样才能进行更新而不仅仅是重复?我一直在阅读http://guides.rubyonrails.org/form_helpers.html,但显然仍然缺少一步。
整个应用程序位于https://github.com/arilaen/pen。
修订控制器
class RevisionsController < ApplicationController
def new
@revision = Revision.new
@lesson = Lesson.find(params[:lesson_id])
end
def create
@revision = Revision.new(params[:revision])
@revision.user_id = current_user.id
@revision.time_updated = DateTime.now
@revision.save
redirect_to current_user.profile
end
def show
@revision = Revision.find(params[:id])
end
def edit
@old_revision= Revision.find(params[:id])
@revision = Revision.new(params[:revision])
@revision.user_id = current_user.id
@revision.lesson_id = @old_revision.lesson_id
@revision.time_updated = DateTime.now
@revision.save
redirect_to current_user.profile
end
end
修订型号:
class Revision < ActiveRecord::Base
attr_accessible :comment, :lesson_id, :user_id, :description, :content, :time_updated, :old_revision_id
belongs_to :lesson, :class_name => "Lesson", :foreign_key => "lesson_id"
belongs_to :user, :class_name => "User", :foreign_key => "user_id"
accepts_nested_attributes_for :lesson
end
新修订表
编辑.html.erb
<%= form_for @revision do |f| %>
<%= render "form" %>
<% end %>
_form.html.erb 在修订中
<%= form_for @revision :url => { :action => "create" } do |f| %>
<div class="field">
<%= f.label :description %><br />
<%= f.text_field :description, :value => @old_revision.description %>
</div>
<div class="field">
<%= f.label :content %><br />
<%= f.text_area :content, :value => @old_revision.content %>
</div>
<div class="field">
<%= f.label :comment %><br />
<%= f.text_field :comment, :value => @old_revision.comment %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
摘自修订/节目:
<% if current_user.nil? %>
<% else %>
<% if @revision.user_id = current_user.id %>
<%= link_to 'New Revision', edit_lesson_revision_path(@revision.id) %><br />
<% else %>
<%= link_to 'Copy', edit_lesson_revision_path(@revision.id) %>
<% end %>
<% end %>
这是我的课程模型,因为它是之前要求的,可能与解决方案相关,也可能不相关:
class Lesson < ActiveRecord::Base
attr_accessible :stable, :summary, :title, :time_created, :revision, :revisions_attributes
has_many :revisions, :class_name => "Revision"
has_many :users, :through => :revisions
accepts_nested_attributes_for :revisions
end
路线.rb
resources :revisions
resources :lessons do
resources :revisions
end