Rails 函数获取“小时、分钟、秒”直到时间戳?

发布于 2024-12-08 14:44:51 字数 129 浏览 1 评论 0原文

一直在挖掘文档,但找不到是否有一个函数可以计算

  • 小时
  • 分钟

作为与红宝石日期时间戳记分开的变量

是否有内置函数或者必须自己计算它?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2024-12-15 14:44:51

API文档中,查看distance_of_time_in_words,我认为这是你在寻找什么。

例如:

def find_time
  distance_of_time_in_words(Time.now, due_at)
end

这将计算从现在到 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:

def find_time
  distance_of_time_in_words(Time.now, due_at)
end

This will calculate the length of time from now until the timestamp of due_at. You can pass the option include_seconds = true to display seconds as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文