vote up 4 vote down star
1

Hi, I have a problem with serialization of Django inherited models. For example

class Animal(models.Model):
    color = models.CharField(max_length=50)

class Dog(Animal):
    name = models.CharField(max_length=50)

...
# now I want to serialize Dog model with Animal inherited fields obviously included
print serializers.serialize('xml', Dog.objects.all())

and only Dog model has been serialized.

I can do smth like

all_objects = list(Animal.objects.all()) + list(Dog.objects.all())
print serializers.serialize('xml', all_objects)

But it looks ugly and because my models are very big so I have to use SAX parser and with such output it's difficult to parse.

Any idea how to serialize django models with parent class?

**EDIT: ** It use to work ok before this patch has been applied. And the explanation why the patch exist "Model saving was too aggressive about creating new parent class instances during deserialization. Raw save on a model now skips saving of the parent class. " I think there should be an option to be able to serialize "local fields only" by default and second option - "all" - to serialize all inherited fields.

flag

69% accept rate
1  
Why do you want to serialize something that is, in the end, designed to map data into a database? – Roberto Liffredo Jul 15 at 21:26

2 Answers

vote up 1 vote down

You found your answer in the documentation of the patch.

all_objects = list(Animal.objects.all()) + list(Dog.objects.all())
print serializers.serialize('xml', all_objects)

However, if you change Animal to be an abstract base class it will work:

class Animal(models.Model):
    color = models.CharField(max_length=50)

    class Meta:
        abstract = True

class Dog(Animal):
    name = models.CharField(max_length=50)

This works as of Django 1.0. See http://docs.djangoproject.com/en/dev/topics/db/models/.

link|flag
vote up 0 vote down

Did you look at select_related() ? as in

serializers.serialize('xml', Dog.objects.select_related().all())
link|flag
This doesn't help: select_related does not affect the django serializer's handling of parent models. – Wogan Jul 29 at 2:39
select_related is an optimization. No extra data is returned by the QuerySet. It just uses (potentially) fewer SQL queries to get any referenced data. In the case above, there are no references through Dog or Animal to other models, so there's absolutely no benefit to using select_related(). – Matt S. Aug 21 at 16:37

Your Answer

Get an OpenID
or

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