There is a lot of documentation on how to serialize a Model QuerySet but how do you just serialize to json the fields of a Model Instance?

link|improve this question

While it looks like you can serialize a queryset of 1 object, you cannot use the classes from django.core to do this. Any particular reason not to use serialize the queryset? – Jack M. Apr 16 '09 at 17:03
1  
The queryset serializer wraps the result in two more layers than it has to. So you have to do data[0].fields.name instead of data.name. – Jason Christa Apr 16 '09 at 17:37
That's what I thought. I ran into that same issue when I was writing a GWT interface for a django backend. Looks like David might be onto something. – Jack M. Apr 16 '09 at 17:48
feedback

6 Answers

up vote 6 down vote accepted

It sounds like what you're asking about involves serializing the data structure of a Django model instance for interoperability. The other posters are correct: if you wanted the serialized form to be used with a python application that can query the database via Django's api, then you would wan to serialize a queryset with one object. If, on the other hand, what you need is a way to re-inflate the model instance somewhere else without touching the database or without using Django, then you have a little bit of work to do.

Here's what I do:

First, I use demjson for the conversion. It happened to be what I found first, but it might not be the best. My implementation depends on one of its features, but there should be similar ways with other converters.

Second, implement a json_equivalent method on all models that you might need serialized. This is a magic method for demjson, but it's probably something you're going to want to think about no matter what implementation you choose. The idea is that you return an object that is directly convertible to json (i.e. an array or dictionary). If you really want to do this automatically:

def json_equivalent(self):
    dictionary = {}
    for field in self._meta.get_all_field_names()
        dictionary[field] = self.__getattribute__(field)
    return dictionary

This will not be helpful to you unless you have a completely flat data structure (no ForeignKeys, only numbers and strings in the database, etc.). Otherwise, you should seriously think about the right way to implement this method.

Third, call demjson.JSON.encode(instance) and you have what you want.

link|improve this answer
I haven't tried the code yet but I just wanted to point out some errors in it. It is instance._meta.get_all_field_names() and getattribute is a function so should have () and not []. – Jason Christa Apr 16 '09 at 19:27
Good points. Chock it up to bad typing. – David Berger Apr 16 '09 at 20:22
in addition to FK, this will not work for datetime fields (unless there is magic in demjson.JSON.encode) – skyl Sep 11 '10 at 19:10
feedback

You can easily use a list to wrap the required object and that's all what django serializers need to correctly serialize it, eg.:

# assuming obj is a model instance
serialized_obj = serializers.serialize('json', [ obj, ])
link|improve this answer
+1 simple solutions are often the best. – Seth Jul 22 '10 at 19:01
But in response you are required to index zero element of the JSON object to get to the serialized object. Just something to note. – rebus Oct 1 '11 at 18:11
And how about serializing all referenced objects along with the root object? – lewap Oct 8 '11 at 0:39
feedback

how about this way:

def ins2dic(obj):
    SubDic = obj.__dict__
    del SubDic['id']
    del SubDic['_state']
return SubDic

or exclude anything you don't want.

link|improve this answer
feedback

It doesn't seem you can serialize an instance, you'd have to serialize a QuerySet of one object.

from django.core import serializers
from models import *

def getUser(request):
    return HttpResponse(json(Users.objects.filter(id=88)))

I run out of the svn release of django, so this may not be in earlier versions.

link|improve this answer
feedback
ville = UneVille.objects.get(nom='lihlihlihlih')
....
blablablab
.......

return HttpResponse(simplejson.dumps(ville.__dict__))

I return the dict of my instance

so it return something like {'field1':value,"field2":value,....}

link|improve this answer
feedback

I solved this problem by adding a serialization method to my model:

def toJSON(self):
    import simplejson
    return simplejson.dumps(dict([(attr, getattr(self, attr)) for attr in [f.name for f in self._meta.fields]]))

Here's the verbose equivalent for those averse to one-liners:

def toJSON(self):
    fields = []
    for field in self._meta.fields:
        fields.append(field.name)

    d = {}
    for attr in fields:
        d[attr] = getattr(self, attr)

    import simplejson
    return simplejson.dumps(d)

_meta.fields is an ordered list of model fields which can be accessed from instances and from the model itself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.