将字符串转换为特定的日期时间格式?
字符串
"2011-05-19 10:30:14"
到
Thu May 19 10:30:14 UTC 2011
如何将特定字符串转换为此日期格式?
String
"2011-05-19 10:30:14"
To
Thu May 19 10:30:14 UTC 2011
How can I convert specific string to this Date format ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
有关格式化的更多信息,请参阅 strftime()日期。
See strftime() for more information about formatting dates.
“2011-05-19 10:30:14”.to_time
"2011-05-19 10:30:14".to_time
无需申请任何东西。只需将此代码添加到分配日期的变量末尾即可。例如,
您将获得您喜欢的正确格式。您可以在 Rails Console 中检查此
尝试 'date_format' gem 以不同格式显示日期。
No need to apply anything. Just add this code at the end of variable to which date is assigned. For example
You will get proper format as you like. You can check this at Rails Console
Try 'date_format' gem to show date in different format.
更多格式:
More formats:
这是另一个有用的代码:
This another helpful code:
使用 日期中的
DATE_FORMAT
转换:在您的初始值设定项中:
在您看来:
Use
DATE_FORMAT
from Date Conversions:In your initializer:
In your view: