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 2 years, 6 months ago
- ajax protocol for data by limodou 4 years, 11 months ago
- base class to easily expose json based web services by jpablo 1 year, 6 months ago
- GeoJSON Serializer for GeoDjango (gis) by danols 9 months ago
- Deep json serialization by Alexey Boriskin 2 years, 7 months ago
Comments