我需要在我的User
模型中调用current_user(在ApplicationControler中定义,就像帮助器一样。)
我测试ApplicationController.helpers.curret_user但不起作用:
irb(main):217:0> ApplicationController.helpers.current_user
NoMethodError: undefined method `current_user' for nil:NilClass
但是这种方法在控制器和视图中工作正常......
那么如何才能让我当前的用户进入模特?
答案 0 :(得分:7)
你不能(或者,至少,你真的不应该)。
您的模型根本无法访问您当前实例化的控制器。您的模型应该设计为甚至可能 一个请求或用户实际与系统交互进行交互(想想ActiveJob)。
您需要将current_user
传递到模型层。
你的具体问题是你发明了一种名为helpers
的东西。这不是一件事,它是nil
,因此您NoMethodError
出现nil:nilClass
错误。 current_user
是一个实例方法,因此您需要直接在控制器的实例上调用它,而不是在类本身上调用它。
答案 1 :(得分:6)
如果您在ApplicationController中调用helper_method:current_user
class ApplicationController < ActionController::Base
helper_method :current_user
def current_user
@current_user ||= User.find_by(id: session[:user])
end
end
你可以在帮助者中调用它
答案 2 :(得分:4)
我刚才在这里回答:https://stackoverflow.com/a/1568469/2449774
为方便起见而复制:
我总是惊讶于&#34;只是不做那个&#34;那些对提问者的基本业务需求一无所知的人的回答。是的,通常应该避免这种情况。但在某些情况下,它既适合又非常有用。我自己就有一个。
这是我的解决方案:
def find_current_user
(1..Kernel.caller.length).each do |n|
RubyVM::DebugInspector.open do |i|
current_user = eval "current_user rescue nil", i.frame_binding(n)
return current_user unless current_user.nil?
end
end
return nil
end
向后移动堆栈,寻找响应current_user
的帧。如果没有找到,则返回nil。通过确认预期的返回类型可以使其更加健壮,并且可能通过确认框架的所有者是一种控制器,但通常只是花花公子。