Rails 函数获取“小时、分钟、秒”直到时间戳?
一直在挖掘文档,但找不到是否有一个函数可以计算
- 小时
- 分钟
- 秒
作为与红宝石日期时间戳记分开的变量
是否有内置函数或者必须自己计算它?
Have been digging around the docs but cannot find if there is a function to calculate the
- hours
- minutes
- seconds
As separate vars from a ruby date time stamp
Is there a build in function or does one have to calculate it by himself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从API文档中,查看
distance_of_time_in_words
,我认为这是你在寻找什么。例如:
这将计算从现在到
due_at
时间戳的时间长度。您也可以传递选项include_seconds = true
来显示秒。From the API docs, check out
distance_of_time_in_words
, I think that is what you are looking for.For instance:
This will calculate the length of time from now until the timestamp of
due_at
. You can pass the optioninclude_seconds = true
to display seconds as well.