gpt4 book ai didi

ruby - 如何在 Ruby 中获取 13 位整数的当前时间?

转载 作者:数据小太阳 更新时间:2023-10-29 06:39:45 26 4
gpt4 key购买 nike

我有这个 jQuery 函数,它返回当前时间作为自纪元(1970 年 1 月 1 日)以来的毫秒数:

time = new Date().getTime();

有没有办法在 Ruby 中做同样的事情?

现在,我正在使用 Ruby 的 Time.now.to_i,它运行良好但返回一个 10 位 整数(秒数)

如何让它显示毫秒数,就像在 jQuery 中一样?

最佳答案

require 'date'

p DateTime.now.strftime('%s') # "1384526946" (seconds)
p DateTime.now.strftime('%Q') # "1384526946523" (milliseconds)

关于ruby - 如何在 Ruby 中获取 13 位整数的当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20001883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com