ruby-on-rails – 在Rails中使用datetime

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在Rails中使用datetime前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何正确地从datetime对象(post.created_at,准确地)提取时间带有/不受TimeZone的影响?如何提取日,月,年值?如何通过自定义模式提取日/月/年(是否可能)?

解决方法

字符串格式的时间:
post.created_at.strftime("FORMAT STRING HERE")
# Without the influence of time-zone: I take it that you want UTC
post.created_at.utc.strftime("FORMAT STRING HERE")

链接strftime文档:
http://ruby-doc.org/core/classes/Time.html#method-i-strftime

获取小时,分和秒值:

post.created_at.hour
post.created_at.min
post.created_at.sec
原文链接:https://www.f2er.com/ruby/272028.html

猜你在找的Ruby相关文章