📅  最后修改于: 2022-03-11 14:46:52.202000             🧑  作者: Mango
latest_id = models.objects.latest('id').id
# check last id then do something with that then.
latest_id = Entry.objects.latest('id')
# source
https://docs.djangoproject.com/en/3.2/ref/models/querysets/#latest