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