我想使用 ransack 为带有Users
. 我有一个从出生日期计算年龄的小方法:
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
这适用于正常显示 ( as in age(@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 %>
我的问题是:如何在搜索中使用年龄而不是出生日期?