Django 应用程序始终使用 UTC

发布于 2024-12-04 13:20:59 字数 260 浏览 1 评论 0原文

我正在构建一个 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 技术交流群。

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

发布评论

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

评论(2

依 靠 2024-12-11 13:20:59

我在这方面可能是错的(我只部分更新了一个项目以正确处理时区),但我相信 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文