元搜索未定义的搜索方法
我正在开发 Rails 3 应用程序,我正在尝试使用 meta_search
gem。
将gem添加到GemFile
并运行bundle install
后,似乎没有search
方法。
undefined method `search' for #<Class:0x00000104134458>
我正在使用与示例类似的内容:
@search = Bill.search(params[:search])
@bills = @search.all
以前有人经历过这种情况吗?
I am working on a rails 3 app, I am trying to use the meta_search
gem.
After adding the gem to the GemFile
and running bundle install
, it seems that there is no search
method.
undefined method `search' for #<Class:0x00000104134458>
I am using something similar to the examples:
@search = Bill.search(params[:search])
@bills = @search.all
Anyone experienced this before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来问题出在椅子和键盘之间。
我忘记重新启动服务器了。这样做之后,它完美地工作了。
Well it seems that the problem was between the chair and the keyboard.
I have forgotten to restart the server. After doing so it worked flawlessly.