是否有一种简单的方法可以编写辅助方法来始终更新会话中先前访问过的URL。我尝试了下面的方法,但保存的网址始终是当前的。我希望能够在我的所有控制器中使用此帮助程序进行重定向。
#application_controller.rb
class ApplicationController < ActionController::Base
before_filter :my_previous_url
def my_previous_url
session[:previous_url] = request.referrer
end
helper_method :my_previous_url
end
我已在用户控制器的更新方法中使用它,如下所示,但它总是重定向到同一个打开的URL(看起来像刷新的样子)。
def update
if current_user.admin == true and @user.update(user_params)
redirect_to my_previous_url, notice: "Password for User #{@user.username} has Successfully been Changed."
return
elsif current_user.admin == false and @user.update(user_params)
session[:user_id] = nil
redirect_to login_path, notice: "Password for User #{@user.username} has Successfully been Changed. Please Log-In Using the New Password."
return
end
respond_to do |format|
if @user.update(user_params)
changed = true
format.html { redirect_to logout_path }
format.json { render :show, status: :ok, location: @user }
else
format.html { render :edit }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end
答案 0 :(得分:0)
request.referer并不是你想要的,因为它会在页面重定向上设置,从而丢失你最初来自的页面。我认为您有一个隐含的要求,它应该将最后一个访问过的网址不同返回到当前网址,是这样吗?此外,我认为您只想将其设置为GET请求,否则您可能会将人们发送回错误的网址,因为他们将通过GET请求发回。我在这里假设这个previous_url的目的是给人一个&#34;返回&#34;链接。
另外,请不要使用方法将previous_url与方法混淆,再次将其读回。
我会这样做:
#application_controller.rb
class ApplicationController < ActionController::Base
before_filter :set_previous_url
helper_method :previous_url
def set_previous_url
if request.method == :get && session[:previous_url] != session[:current_url]
session[:previous_url] == session[:current_url]
session[:current_url] = request.url
end
end
def previous_url
session[:previous_url]
end
end