ruby-on-rails-3 – Authlogic Rails 3.1

人们使用Rails 3.1版本的authlogic.

我的gemfile中有以下条目:

gem 'authlogic',:git => 'https://github.com/AndreasWurm/authlogic.git'

我的问题是在我的基础ApplicationController中的一段代码.

def require_no_user
  if current_user
    store_location
    flash[:notice] = "You must be logged out to access this page"
    redirect_to :controller => "home",:action => "index"
    return false
  end
end

def store_location
  session[:return_to] = request.request_uri
end

我得到的错误是:

session[:return_to] = request.request_uri

我得到一个错误说:

undefined method `request_uri' for #<Actiondispatch::Request:0x7dadd4d8>

请求_uri已从Actiondispatch中删除,如果是,是什么正确的替代方法

解决方法

最好的解决方案就是说 Vadim,使用Actiondispatch :: Request中的新方法

你只是替换:

def store_location
  session[:return_to] = request.request_uri
end

通过:

def store_location
  session[:return_to] = request.url
end

完成了!

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...