1

我收到了格式为“11 月 8 日星期四”的网络表单的日期。我想确保将其存储在 MongoDB(我使用 Mongoid 作为我的客户端驱动程序)中的适当日期字段中。使用 Ruby 或任何可用的类型库,确保在解析此日期时以不会破坏日期字段 Mongoid/MongoDB 支持的方式存储它的最佳方法是什么?

4

1 回答 1

1

You should use Time.parse (from the Ruby Standard Library) to convert the string which comes from the web form into a Time object, e.g.:

time = Time.parse(params[:date])

Since this is provided by the Ruby Standard Library, so you may need to prepend a require "time" to this statement.

于 2013-08-27T21:56:15.917 回答