我的Rails应用程序中有一些模型TimeCorrection。它有3个字段:start_time,end_time和value。我在数据库中有1条记录值:
start_time: 2014-01-10 06:58:57.507512
end_time: 2014-01-10 06:58:58.507532
value: 10
我需要以JSON格式显示它:
tc = TimeCorrection.first
render json: [tc.start_time, tc.end_time]
但我有以下输出:
[
"2000-01-01T06:58:57Z",
"2000-01-01T06:58:58Z"
]
您可以看到时间不正确。我做错了什么?我该如何解决?谢谢。