如何将 PostgreSQL 数据库中的时间戳转换为用户时区时间?
我在 Web 应用程序中使用 SQLAlchemy 和 PostgreSQL。
我的 SQLA 模型(大致)定义如下:
class MyModel(Base):
ts_field = Column(DateTime(timezone=True))
# more here, obviously
我的 Web 应用程序用户有一个 timezone
属性,我尚未指定其格式(这是这个问题的一部分),该属性确定如何向他们显示时间戳。显然,它们并不全部位于服务器的区域设置中,因此系统时区并不完全有用。
我希望有一种简单的方法来根据每个用户选择的时区获取格式化的时间戳。
(我对时区转换的许多术语有点模糊,所以如果我含糊地问这个问题 - 我敢打赌我是这样! - 请随时发表评论并帮助我澄清!)
I'm using SQLAlchemy and PostgreSQL here, in a web application.
My SQLA model is defined (roughly) as follows:
class MyModel(Base):
ts_field = Column(DateTime(timezone=True))
# more here, obviously
My web app users have a timezone
property whose format I have not yet specified (that's part of this question) that determines how to display time stamps to them. They're not all in the locale of the server, obviously, so the system time zone isn't exactly useful.
I want to have an easy way to get out timestamps formatted for each user depending on their selected time zone.
(I'm a bit fuzzy on a lot of the terminology of time zone conversion, so if I'm asking this vaguely -- and I'll bet I am! -- please feel free to comment and help me clarify!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,当您创建带有时区的时间戳(快捷名称timestamptz)时,pg 会创建一个时间戳,并在存储时在当前时区和 GMT 之间进行转换。
当您将其拉出时,您可以将时区设置更改为您想要的任何其他偏移量。例如:
您可以通过使用“at time zone”命名法来缩短此时间:
无需一遍又一遍地设置每个时区,只需每次根据正确的时区在语句中即可。
OK, when you create a timestamp with timezone (shortcut name timestamptz) pg creates a timestamp, and converts between the current timezone to GMT when storing it.
When you pull it out, you change the timezone setting to whatever you want to change it to some other offset. For example:
You can shorten this up by using "at time zone" nomenclature:
no need to set each time zone over and over, just in the statement each time according to the proper timezone.
您可以使用 pytz 进行转换。
You can use pytz to do the conversions.