gpt4 book ai didi

ruby-on-rails - redirect_to 编辑

转载 作者:行者123 更新时间:2023-12-04 05:58:44 27 4
gpt4 key购买 nike

我的应用程序中有很长的表单,所以我设置了一个 _new_form.html.erb这是在我的 new.html.erb 中呈现的.在用户更新此表单并通过一些基本验证后,我希望它们被重定向到 edit.html.erb呈现完整形式,即 _new_form.html.erb .

我确定这是基本的东西,但我不知道如何去做。

我试过更新 创建 在我的 Controller 中使用下面的操作,但我现在到了哪里。

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

最佳答案

您正在尝试重定向到 edit_location_path(:id) .符号:id不是你想在这里传递的。您想要位置的 id 或位置本身:redirect_to edit_location_path(@location)

关于ruby-on-rails - redirect_to 编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15754919/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com