使用以下代码:
def index @q = "" @q = params[:search][:q] if params[:search] q = @q @search = Sunspot.search(User) do keywords q end @users = @search.results end
解决方法
这取决于块被调用.如果使用yield关键字或Proc#调用方法调用它,那么您可以在块中使用实例变量.如果它使用Object#instance_eval或Module#class_eval调用,则块的上下文将被更改,您将无法访问实例变量.
@x = "Outside the class" class Test def initialize @x = "Inside the class" end def a(&block) block.call end def b(&block) self.instance_eval(&block) end end Test.new.a { @x } #=> "Outside the class" Test.new.b { @x } #=> "Inside the class"
在您的情况下,Sunspot.search看起来像使用instance_eval在不同的上下文中调用块,因为该块需要轻松访问该关键字方法.