我有一個django視頻模型,如果所有者ID等於當前用戶ID,我想獲取「nameoriginalvideo」的最後一個值。queryset django爲列的最後一個值,如果另一列等於一個值
def teste(request):
originalvideo = Videounwtm.objects.values('nameoriginalvideo').filter(owner_id = request.user.id).first().last()
vle = originalvideo['nameoriginalvideo']
return render(request, 'teste.html', {'vle': vle})
預先感謝您。
你正在使用哪個版本的Django? – anuragal
@anuragal它是1.11.3 –
這是一個可能的重複1. https://stackoverflow.com/questions/2191010/get-last-record-in-a-queryset 2. https://stackoverflow.com/questions/15675672/django-get-the-latest-record-filter- – anuragal