gpt4 book ai didi

ruby - 活跃管理员过滤时间显示

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:56 25 4
gpt4 key购买 nike

在我的事件管理员索引之一中,我有一个时间开始字段,我使用了 :time 作为数据库格式,当前(2012-04-05 16:59:00.000000)在我的数据库中,所以我的索引显示(January 01, 2000 02:02) 我只想显示我的索引的时间是

index do 
column "Guest Name", :name
column "Service Type", :service
column "Booked Date", :date
column "Time Start", :timeStart
column "Time End",:timeEnd
column "Number of guest", :numGuest
default_actions
end

我想这样做,但显然行不通

“时间开始”列,:timeStart.strftime('%H:%M:%S:%p')

非常感谢您的帮助,提前感谢您为所有人提供更多的力量

最佳答案

应该这样做:

index do
column :timeStart, :sortable => :timeStart do |r|
r.timeStart.strftime('%H:%M:%S:%p')
end
end

为了不丢失该列的排序能力,您可以在该列上使用 :sortable

关于ruby - 活跃管理员过滤时间显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10168552/

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