Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获得注册日期?这个字段的名称是什么?我使用 django 注册。我在文档中没有看到这个
User.objects.filter(date_of_registration_field__lt = my_date)
date_joined 指定帐户创建时间的日期时间。创建帐户时默认设置为当前日期/时间。
date_joined
指定帐户创建时间的日期时间。创建帐户时默认设置为当前日期/时间。