On 6/2/07, emailgregn <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > How can I get foreign key fields serialized ?
The problem you have is not to serialize the keys, but to find the dependencies that need to be serialized. Although the serializer _can_ take a queryset, it only does so as a degenerate case of a list of objects. You can pass _any_ list of _any_ objects into the serializer, and it will spit them out as serialized data. So: jstr = serializers.serialize('json', list(Book.objects.all()) + list(Author.objects.all())) will serialize all the books and authors. However, if you only want the authors related to a subset of books, you will need to do some filtering. There isn't currently a built-in method for determining dependencies, so you'll need to work out the dependency list yourself. In your specfic case, you can filter fairly easily by getting all the books, then getting all the authors from those books. The generic case is a little harder, but shouldn't be too difficult. If you (or anyone else for that matter) wanted to contribute a generic dependency generating algorithm, I'd be happy to commit it to trunk. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---