我试图将日期时间信息保存到 mongo 中的以下字段
key :last_comment_time_cache, DateTime
update_attributes!({:last_comment_time_cache => Time.now})
正在保存的数据缺少时间
"last_comment_time_cache": {
"$date": "2013-03-23T00:00:00.000Z"
}
关于我做错了什么的任何想法?,谢谢 Nath
我试图将日期时间信息保存到 mongo 中的以下字段
key :last_comment_time_cache, DateTime
update_attributes!({:last_comment_time_cache => Time.now})
正在保存的数据缺少时间
"last_comment_time_cache": {
"$date": "2013-03-23T00:00:00.000Z"
}
关于我做错了什么的任何想法?,谢谢 Nath