日期时间的 strftime

发布于 2024-09-18 17:02:00 字数 302 浏览 1 评论 0原文

我得到了下面的代码,我想将其转换为特定格式的字符串。但我无法让它工作。

Date.today + warning.notify_time_close.seconds

我想做的是这样的事情,但它不起作用:)

(Date.today + warning.notify_time_close.seconds).strftime "%d-%m-%Y %H:%M:%S"

我知道它很简单,但只是不知道该怎么做:)

提前致谢!

肯尼思

I got the below code which I would like to convert to a string in a specific format. But I can't get it working.

Date.today + warning.notify_time_close.seconds

What I want to do is somethin like this but it doesn't work :)

(Date.today + warning.notify_time_close.seconds).strftime "%d-%m-%Y %H:%M:%S"

I know its simple but just don't know how to do it :)

Thanks in advance!

Kenneth

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初心未许 2024-09-25 17:02:00

这应该不是必需的,但作为解决方法,您可以尝试以下操作:

Time.at(
    Date.today.to_time.to_i + warning.notify_time_close.seconds
).strftime("%d-%m-%Y %H:%M:%S")

This should not be necessary, but as a workaround you could try this:

Time.at(
    Date.today.to_time.to_i + warning.notify_time_close.seconds
).strftime("%d-%m-%Y %H:%M:%S")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文