JsonResponse

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
from django.core.serializers import json, serialize
from django.db.models.query import QuerySet
from django.http import HttpResponse
from django.utils import simplejson

class JsonResponse(HttpResponse):
    def __init__(self, object):
        if isinstance(object, QuerySet):
            content = serialize('json', object)
        else:
            content = simplejson.dumps(
                object, indent=2, cls=json.DjangoJSONEncoder,
                ensure_ascii=False)
        super(JsonResponse, self).__init__(
            content, content_type='application/json')

More like this

  1. Universal JsonResponse by pietras 3 years, 10 months ago
  2. ExcelResponse by Tarken 4 years, 7 months ago
  3. JSON decorator for views handling ajax requests by anilshanbhag 5 months ago
  4. base class to easily expose json based web services by jpablo 2 years, 10 months ago
  5. universal JSONResponse by guetux 2 years, 1 month ago

Comments

RobertPattinson (on August 6, 2012):

it chooses the correct JSON serializer based on whether or not it is passed a QuerySet
Thanks
HTC Desire C cases

#

(Forgotten your password?)