在我的application_helper.rb文件中,我具有如下功能:
def find_subdomain
request.domain
end
未定义的局部变量或方法“请求”
我正在另一个助手中调用此方法。我如何在不通过 Controller 传递任何参数的情况下获得帮助器中的域。
最佳答案
我知道这很旧,但是最近我偶然发现了这个问题,以为我会加入。您可以将方法添加到ApplicationController
中,并将其指定为helper_method
:
class ApplicationController < ActionController::Base
helper_method :find_subdomain
private
def find_subdomain
request.domain
end
end
关于ruby-on-rails - Rails帮助器中的访问请求对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23954410/