最佳答案
我试图得到最新的 Django 模型对象,但似乎不能成功。
这两种方法都不管用:
obj = Model.objects.filter(testfield=12).latest()
obj = Model.objects.latest().filter(testfield=12)