6
我在我的應用程序中有一個相當長的表單,所以我設置了一個_new_form.html.erb
,它在我的new.html.erb
中呈現。用戶更新此表單並通過一些基本驗證後,我希望將它們重定向到提供完整表單的edit.html.erb
,即_new_form.html.erb
。redirect_to編輯
我敢肯定這是基本的東西,但我不知道如何去做。
我試過更新創建行動在我的Contoller與下面,但我現在得到的地方。
即
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
輝煌,感謝mil。 – Holly