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?
|
feedback
|
|
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 Second, implement a
This will not be helpful to you unless you have a completely flat data structure (no Third, call | |||||||
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.:
| |||||||
feedback
|
|
how about this way:
or exclude anything you don't want. | |||
|
feedback
|
|
It doesn't seem you can serialize an instance, you'd have to serialize a QuerySet of one object.
I run out of the | ||||
|
feedback
|
I return the dict of my instance so it return something like {'field1':value,"field2":value,....} | |||
|
feedback
|
|
I solved this problem by adding a serialization method to my model:
Here's the verbose equivalent for those averse to one-liners:
| |||
|
feedback
|
django.coreto do this. Any particular reason not to use serialize the queryset? – Jack M. Apr 16 '09 at 17:03