2013-04-02 41 views
6

我在我的應用程序中有一個相當長的表單,所以我設置了一個_new_form.html.erb,它在我的new.html.erb中呈現。用戶更新此表單並通過一些基本驗證後,我希望將它們重定向到提供完整表單的edit.html.erb,即_new_form.html.erbredirect_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 

回答

13

你試圖重定向到edit_location_path(:id)。符號:id是不是你想要通過這裏。你想要的位置的ID或位置本身:redirect_to edit_location_path(@location)

+0

輝煌,感謝mil。 – Holly