如何使用 Django ORM 在模型字段中存储 MySQL NOW() 函数的当前时间?

如何使用 django orm 在模型字段中存储 mysql now() 函数的当前时间?

使用 django orm 实现 mysql now() 函数

django 中使用 mysql now() 函数,可以将当前时间存储在模型字段中,避免使用后端的机器时间。

解决方法:

首先,在模型类中定义字段,并指定 auto_now_add 值为 true,如下所示:

from django.db import models

class MyModel(models.Model):
    created_at = models.DateTimeField(auto_now_add=True)

auto_now_add 参数指示 django 在模型创建时,将字段值设置为 mysql 的 now() 函数的当前时间。

注意:

使用 auto_now_add 时,确保数据库表中相应字段的字段类型为 datetimetimestamp

文档参考:

有关 django orm 中数据库函数的更多信息,请参阅 django 文档:

  • 《django documentation | database functions - now》

以上就是如何使用 Django ORM 在模型字段中存储 MySQL NOW() 函数的当前时间?的详细内容,更多请关注其它相关文章!