In Django, you can specify relationships like:
author = ForeignKey('Person')
And then internally it has to convert the string "Person" into the model Person.
Where's the function that does this? I want to use it, but I can't find it.
|
In Django, you can specify relationships like:
And then internally it has to convert the string "Person" into the model Where's the function that does this? I want to use it, but I can't find it. |
||||
|
|
|
Found it. It's defined here:
Defined as:
|
|||
|
|
|
I'm not sure where it's done in Django, but you could do this. Mapping the class name to the string via reflection.
|
|||
|
|
|
Most modem "strings" appear as the form "appname.modelname" so you might want to use this variation on get_model
The part of the django code that usually turns such strings into a model is a little more complex This from
To me, this appears to be an good case for splitting this out into a single function in the core code. However, if you know your strings are in "App.Model" format, the two liner above will work. |
|||
|
|