How to write the right time to DB according my timezone?

后端 未结 2 1025
野趣味
野趣味 2021-01-27 05:35

When I save dates in my database Django shows message about succesfull adding with the right time but in fact in the databese time is different

models.py:

相关标签:
2条回答
  • 2021-01-27 05:51

    The first sentence of Django's time zone documentation explains what you're seeing:

    When support for time zones is enabled, Django stores datetime information in UTC in the database, uses time-zone-aware datetime objects internally, and translates them to the end user’s time zone in templates and forms.

    So the database value is in UTC. The str() value is also in UTC, since you've manually converted the UTC datetime to a string without changing the timezone. The value interpreted by the form and displayed by the template is in your local time, since templates convert DateTimeFields to the current timezone.

    If you want the str() value to use the local timezone you can use Django's localtime() function:

    from django.utils.timezone import localtime
    
    class Teg1(models.Model):
        ...
    
        def __str__(self):
            return str(self.num) + " || " + str(localtime(self.created_at))
    
    0 讨论(0)
  • 2021-01-27 06:05

    If i'm not mistaken, you must be in Russia which is 7 hours ahead of UTC. So, the server that you use must be using the UTC time which in my opinion is a good thing.
    I personally prefer to save times in UTC time in the data base and then convert them to the local time in the front end.

    from django.utils import timezone
    from datetime import datetime
    
    teg1 = Teg1(created_at=datetime.now(tz=timezone.utc)
    teg1.save()
    

    However, if you want to save the datetime in your local time, you can use:

    from datetime import datetime    
    import pytz
    
    novosibirsk = pytz.timezone("Asia/Novosibirsk")
    now = datetime.now(novosibirsk)
    teg1 = Teg1(created_at=now)
    teg1.save()
    

    Have in mind that in your admin interface, you might see the time and date based on the timezone you select in your settings.py. However, the data saved in the database is still in UTC time.

    0 讨论(0)
提交回复
热议问题