如何在 Django 中设置我自己的时区?

How do I setup my own time zone in Django?

我住在孟加拉国吉大港,我所在的时区是 GMT+6。如何在 Django 设置中更改为这个时区?

您可以在 TIME_ZONE setting [Django-doc]:

中将时区指定为 'Asia/Dhaka'
# settings.py

<b>TIME_ZONE = 'Asia/Dhaka'</b>
# …

注意,如果USE_TZ setting [Django-doc]设置为True,那么:

When USE_TZ is True, this is the default time zone that Django will use to display datetimes in templates and to interpret datetimes entered in forms.

您可以在 setting.py、USE_TZ = True TIME_ZONE = 'Asia/Dhaka' 中定义自己的时区。 Django documentation