所以我有一个类,其哈希表示看起来像这样。
{"dateTime"=>[1484719381, 1484719381], "dateTime1"=>[1484719381, 1484719381]}
这里的dateTime是一个 unix 格式的 dateTime 数组。
我正在尝试将此哈希转换为我使用 hash.to_json 的 json_string 的等效项。调用 to_json 时有什么方法可以修改 date_time 的格式。生成的 json 应该如下所示
'{"dateTime1":["2017-01-18T06:03:01+00:00","2017-01-18T06:03:01+00:00"]}'
基本上我正在寻找一个可以在 hash.to_json 期间调用的实现。