返回 0 条记录元搜索

发布于 2024-12-11 18:26:23 字数 1007 浏览 0 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一萌ing 2024-12-18 18:26:23

您可以将控制器代码替换为:

if !params[:q].blank?  # nil.blank? and [].blank? are true
  @q = Person.search(params[:q])
  @people = @q.result 
else
  @people = []
end

You could replace your controller code with:

if !params[:q].blank?  # nil.blank? and [].blank? are true
  @q = Person.search(params[:q])
  @people = @q.result 
else
  @people = []
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文