微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – Ransack:使用年龄而不是出生日期

我想使用ransack为用户构建一个高级搜索功能.
我有一个方法来计算从出生日期开始的年龄:

def age(dob)
  Now = Time.Now.utc.to_date
  Now.year - dob.year - ((Now.month > dob.month || (Now.month == dob.month && Now.day >= dob.day)) ? 0 : 1)
end

这适用于正常显示(如年龄(@ user.date_of_birth))

但是当使用search_form_for时,我不能这样做:

<%= search_form_for @search,url: search_users_path,method: :post do |f| %>
    <div class="field">
        <%= f.label :date_of_birth_gteq,"Age between" %>
        <%= f.text_field :date_of_birth_gteq %>
        <%= f.label :date_of_birth_gteq,"and" %>
        <%= f.text_field :date_of_birth_lteq %>
    </div>
<div class="actions"><%= f.submit "Search" %></div>
 <% end %>

我的问题是:如何在搜索中使用年龄而不是出生日期?

解决方法

添加如下所示的范围以查找给定年龄的日期.

scope :age_between,lambda{|from_age,to_age|
  if from_age.present? and to_age.present?
    where( :date_of_birth =>  (Date.today - to_age.to_i.year)..(Date.today - from_age.to_i.year) )
  end
}

对于ransacke语法:

ransacker :age,:formatter => proc {|v| Date.today - v.to_i.year} do |parent|
  parent.table[:date_of_birth]
end

在视野中

<%= f.text_field :age_gteq %>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐