当我从 MongoMapper 返回 created_at 和 updated_at 的 JSON 格式时,这是我看到的一个示例
"updated_at\":\"2012-04-25T16:25:05Z\"
最后的 T(时间?)和 Z 是什么?
irb(main):009:0> Story.last.created_at
DEBUG - MONGODB (0ms) prototype_development['stories'].find({}).limit(-1)
=> 2012-04-25 16:24:26 UTC
irb(main):010:0> Story.last.created_at.to_s
DEBUG - MONGODB (0ms) prototype_development['stories'].find({}).limit(-1)
=> "2012-04-25 16:24:26 UTC"
irb(main):011:0> JSON.parse(Story.last.to_json)['created_at']
DEBUG - MONGODB (0ms) prototype_development['stories'].find({}).limit(-1)
=> "2012-04-25T16:24:26Z"