返回 0 条记录元搜索
我使用的是 Rails 3.1,并且正在使用 Ransack Gem。这就是我控制器中的内容:
@q = Person.search(params[:q])
@people = @q.result
这就是我认为的内容:
<%= search_form_for @q do |f| %>
<label>Given Name:</label>
<%= f.text_field :given_name_cont %>
<label>Family Name:</label>
<%= f.text_field :family_name_cont %>
<%= f.submit %>
<% end %>
这运行良好并且符合 Ransack 文档。但是,如果我的搜索表单不包含任何参数(即没有指定要搜索的内容),它将返回所有 记录。我希望发生的是没有返回记录。
我的 Ruby 非常弱,所以有人可以告诉我如何在没有 params[:q] 或 params[:q] 没有指定任何搜索条件(即用户提交了一个空表单)的情况下干净地让 @people 返回一个空数组。
基本上我的问题与此StackOverFlow 上的元搜索问题,但该解决方案似乎不适用于 Ransack,因为它抱怨“search_attributes”不是可用的方法。
重要的是它返回 0 条记录,没有提交参数,并且提交了空参数。任何解释你的代码为何有效的注释都会很好。谢谢。
I am on Rails 3.1 and I am using the Ransack Gem. This is what I have in my controller:
@q = Person.search(params[:q])
@people = @q.result
This is what I have in my view:
<%= search_form_for @q do |f| %>
<label>Given Name:</label>
<%= f.text_field :given_name_cont %>
<label>Family Name:</label>
<%= f.text_field :family_name_cont %>
<%= f.submit %>
<% end %>
This works well and is per the Ransack documentation. However, if my search form does not contain any parameters (ie nothing specified to search) it returns ALL records. What I want to have happen is NO records returned.
My Ruby is pretty weak so can someone show me how to cleanly have @people return an empty array if there is no params[:q] or params[:q] does not specify any search criteria (ie the user submitted an empty form).
Essentially my question is the same as this Metasearch question on StackOverFlow, but the solution doesn't seem to work for Ransack as it complains "search_attributes" is not an available method.
It's important that it returns 0 records with no params submitted and with empty params submitted. Any notes explaining why your code works would be good to. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将控制器代码替换为:
You could replace your controller code with: