gpt4 book ai didi

ruby-on-rails - Rails 4 + Ransack : lteq does not work well with datetime?

转载 作者:行者123 更新时间:2023-12-04 19:05:56 24 4
gpt4 key购买 nike

我有一个搜查搜索表单:

<h1>Scheduled Payments</h1>


<%= search_form_for [:admin, @search] do |form| %>
<%= form.text_field :start_date_gteq, value: @order_date_gteq_with_proper_format, class: "datepicker" %> to
<%= form.text_field :start_date_lteq, value: @order_date_lteq_with_proper_format, class: "datepicker" %>
<%= form.submit "Search" %>
<% end %>

我希望用户能够输入 2 个日期,并且对于每个 ScheduledPayment start_date 大于或等于第一个文本字段并且 start_date 小于或等于要显示的第二个文本字段的记录。

这有效:

enter image description here

请注意,该记录的开始日期为 07/17/2014 .当我输入 07/17/2014在第二个文本字段中,没有显示任何内容:

enter image description here

我猜这是因为该记录的 start_date 中的小时或分钟超过 +00:00:00,这可能是第二个字段的默认值。在这种情况下,我将如何使用 start_date 07/01/2014 获取所有记录至 07/17/2014 23:59:59 (绝对结束 07/17/2014 )?

最佳答案

您可以尝试以下方法吗?

# the controller's action where you pass the params to the search method:
def your_action
start_time = params[:start_date_gteq].to_date rescue Date.current
start_time = start_time.beginning_of_day # sets to 00:00:00
end_time = params[:start_date_lteq].to_date rescue Date.current
end_time = end_time.end_of_day # sets to 23:59:59
ScheduledPayment.search(start_time: start_time..end_time)

关于ruby-on-rails - Rails 4 + Ransack : lteq does not work well with datetime?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24812018/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com