guoren/app/helpers/application_helper.rb

9 lines
178 B
Ruby

module ApplicationHelper
def utc_time_to_local utctime
# 将数据库中的UTC时间转换为本地时间
return utctime.localtime.strftime(format='%F %T')
end
end