Changes between Version 1 and Version 2 of Ticket #30458


Ignore:
Timestamp:
May 7, 2019, 11:57:35 AM (5 years ago)
Author:
dopatraman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30458 – Description

    v1 v2  
    11I find the JsonResponse interface to be a bit clunky. I'd like to be able to do something like this:
     2
     3{{{
     4    return JsonResponse({"posts": list(Post.objects.all())})
     5}}}
     6
     7For context, here is my code:
    28{{{
    39# models.py
Back to Top