Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Time.zone.now 来获取用户的时间。
我认为这是错误的。你能确认它是错误的吗?如何获取用户的时间?
谁在我的服务器上设置 Time.zone?
是的,这是错误的。Time.zone 是您应用程序的时区设置的任何值。这通常在 application.rb 中设置
config.time_zone = 'UTC'
如果您想要用户的时区,您需要通过 JavaScript 从客户端获取它,或者让用户在您的应用程序中自行设置。