0

我知道这个问题不是第一次讨论过,但我遇到了一个问题并且有点困惑。

所以我有一个芹菜任务,应该及时发送提醒。

在我的配置中:

USE_TZ = True
TIMEZONE = 'Asia/Singapore'

例如我有一个模型,如:

class Reminder(models.Model):
    created =  models.DateTimeField(default=timezone.now)

这是一个简化的模型,它有更多字段,但在 DateTime 字段中存在问题。

然后我打开 django shell 并获得如下时间:

timezone.now()
reminder.created

它以 UTC 显示正确的时间,例如:

datetime.datetime(2016, 12, 22, 8, 47, 43, 370101, tzinfo=<UTC>) #tz now
datetime.datetime(2016, 12, 22, 8, 47, 43, 370101, tzinfo=<UTC>) #reminder created

但是,如果我从控制台运行任务并设置打印或尝试使用 ipdb 进行调试,我得到了上面的时间:

2016-12-22 09:17:19.141242+00:00 # tz now
2016-12-22 16:52:43.366542+00:00 # reminder time CONVERT UTC+8 like Singapore but it became UTC now!!!

所以,我不明白它是怎么回事。当然,在这种情况下,我无法正确比较日期时间。

Django 1.8 和数据库 PostgreSQL

4

0 回答 0