我的应用程序中有一个很长的表单,所以我设置了一个_new_form.html.erb
在我的new.html.erb
. 在用户更新此表单并通过一些基本验证后,我希望它们被重定向到edit.html.erb
呈现完整表单的表单,即_new_form.html.erb
.
我确定这是基本的东西,但我不知道该怎么做。
我已经尝试使用以下内容更新我的 Contoller 中的Create操作,但我现在知道了。
IE
def create
@location = Location.new(params[:location])
#redirect_to :action => "edit"
respond_to do |format|
if @location.save
format.html { redirect_to edit_location_path(:id), notice: 'Location was successfully created.' }
format.json { render json: @location, status: :created, location: @location }
else
format.html { render action: "new" }
format.json { render json: @location.errors, status: :unprocessable_entity }
end
end
end