diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 7fed9aa..c58e6db 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -2,7 +2,7 @@ module ApplicationHelper def get_strftime intime # 将数据库中的UTC时间转换为本地时间 - return intime.localtime.strftime(format='%F %T') + return intime.utc.in_time_zone('Beijing').strftime(format='%F %T') end end