我希望我的页面在创建记录后刷新,此时它将它定向到之前的页面。这是我的控制器的代码:
def create
@license = License.new(params[:license])
respond_to do |format|
if @license.save
format.html { redirect_to :controller => 'customers', :action => 'index' }
format.json { render json: @customer, status: :created, location: @customer }
else
format.html { render action: "new" }
format.json { render json: @customer.errors, status: :unprocessable_entity }
end
end
它说redirect_to
我需要使用当前 id 刷新或链接到当前页面,这将是:controller => 'customers', :action => 'show'
但具有当前页面记录的 id。