how to pass a variable with redirect_to?

2020-02-02 11:10发布

问题:

In my controller destroy function, I would like to redirect to index after the item deleted, and I would like to pass a variable called 'checked' when redirect:

def destroy
    @Car = Car.find(params[:id])
    checked = params[:checked]

    if @car.delete != nil

    end

    redirect_to cars_path #I would like to pass "checked" with cars_path URL (call index)
end

how to pass this 'checked' variable with cars_path so that in my index function I can get it?? (cars_path calls index function)

def index
 checked = params[checked]
end

回答1:

If you do not mind the params to be shown in the url, you could:

redirect_to cars_path(:checked => params[:checked])

If you really mind, you could pass by session variable:

def destroy
  session[:tmp_checked] = params[:checked]
  redirect_to cars_path
end

def index
  checked = session[:tmp_checked]
  session[:tmp_checked] = nil # THIS IS IMPORTANT. Without this, you still get the last checked value when the user come to the index action directly.
end