guoren/app/helpers/application_helper.rb

10 lines
190 B
Ruby
Raw Normal View History

2016-12-22 20:00:08 +08:00
module ApplicationHelper
2016-12-22 20:05:38 +08:00
2016-12-27 10:46:28 +08:00
def get_strftime intime
2016-12-26 11:00:51 +08:00
# 将数据库中的UTC时间转换为本地时间
2016-12-27 11:24:34 +08:00
return intime.utc.in_time_zone('Beijing').strftime(format='%F %T')
2016-12-26 11:00:51 +08:00
end
2016-12-22 20:00:08 +08:00
end