Dear django-users,

Does anyone know of a way to dynamically create an object related to a
model whose name is not known until runtime?  Essentially, I have a
situation wherein I need to create this associated object, but seem to
have no way of getting at it.

I am trying to do it by way of getattr(self, attr_name), but it would
seem that the nature of relationships dictates that the attribute
designated by attr_name is in fact a method masquerading as an
attribute by way of property, so any attempt to retrieve it runs the
method, which causes:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Python/2.5/site-packages/django/db/models/fields/
related.py", line 235, in __get__
    raise self.field.rel.to.DoesNotExist
django.contrib.auth.models.DoesNotExist

The problem is, of course, that I can't assign an attribute sans the
ability to specify which attribute I'm after...  Does anyone have any
suggestions?

Thanks in advance,

Alex.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to