Django 应用程序始终使用 UTC
我正在构建一个 Django 应用程序,它将对所有时间戳和日期时间字段使用 UTC。用户(环境研究站网络的操作员)接受过输入 UTC (GMT) 时间的培训,并且服务器以及用户的工作台式机/笔记本电脑均设置为 UTC,没有夏令时调整。
在 settings.py
中,我可以将 TIME_ZONE
设置为 None
,但如果可以的话,我不想依赖服务器时间。
您将如何设置 Django 的配置设置?
I am building a Django application that will be using UTC for all time stamps and datetime fields. The users (operators of a networks of environmental research stations) are trained to enter times in UTC (GMT) and the server as well as the users' work desktop/laptop computers are set to UTC with no daylight saving time adjustment.
In settings.py
, I could set TIME_ZONE
to None
, but do not want to rely on server time if I can help it.
How would you set Django's configuration settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这方面可能是错的(我只部分更新了一个项目以正确处理时区),但我相信 TIME_ZONE 变量仅由 Postgres 后端使用(通过 grep 源确定)。因此,如果您不使用 Postgres,那么使用什么并不重要……如果您使用 Postgres,则可以使用
"UTC"
(相关文档)。I could be wrong on this (I've only partially updated a project to correctly handle timezones), but I believe that the
TIME_ZONE
variable is only used by the Postgres backend (determined by grepping the source). So, if you're not using Postgres, it doesn't really matter what you use… And if you are using Postgres, you can use"UTC"
(relevant documentation).请参阅 https://docs.djangoproject.com/en/dev/ref /settings/#time-zone
在 Django 文档。
See https://docs.djangoproject.com/en/dev/ref/settings/#time-zone
It's called "UCT Etc/UCT" in the Django docs.