我正在开发rails 3应用程序,我正在尝试使用meta_search
gem。
在将gem添加到GemFile
并运行bundle install
之后,似乎没有search
方法。
undefined method `search' for #<Class:0x00000104134458>
我正在使用类似于示例的东西:
@search = Bill.search(params[:search])
@bills = @search.all
以前有人经历过这种情况吗?
看来问题出在椅子和键盘之间。
我忘记重新启动服务器了。在这样做之后,它完美地工作了。