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
- Universal JsonResponse by pietras 3 years, 10 months ago
- ExcelResponse by Tarken 4 years, 7 months ago
- JSON decorator for views handling ajax requests by anilshanbhag 5 months ago
- base class to easily expose json based web services by jpablo 2 years, 10 months ago
- universal JSONResponse by guetux 2 years, 1 month ago
Comments
it chooses the correct JSON serializer based on whether or not it is passed a QuerySet
Thanks
HTC Desire C cases
#