我有一个Lesson模型和一个Revision模型。创建课程时,将创建其第一个修订版(模型具有has_many through:relation)。用户应该能够通过更新旧版本来创建新版本 - 但更新将保存到新版本。
目前我的课程和第一个修订版本通过嵌套表单正确保存。我想知道的是 - 如何创建一个“新版本”表单来执行更新表单所做的工作,但将结果保存到新版本? (新版本所附带的教训将保持不变。)
编辑:通过下面的更新(并且希望更简洁)代码,新版本保存,但我从未定向到表单。我直接发送到个人资料页面,在那里我可以看到修订列表。如何进行更新而不仅仅是重复?我一直在阅读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
新修订表格
edit.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
的routes.rb
resources :revisions
resources :lessons do
resources :revisions
end