Ticket #10981: 10981-string_model_names_notes.2.diff

File 10981-string_model_names_notes.2.diff, 2.5 KB (added by Ramiro Morales, 15 years ago)

New corrected and sllightly enhanced iteration

  • docs/ref/models/fields.txt

    diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
    a b  
    801801        # ...
    802802
    803803Note, however, that this only refers to models in the same ``models.py`` file --
    804 you cannot use a string to reference a model defined in another application or
    805 imported from elsewhere.
     804As a general rule, you cannot use a string to reference a model defined in
     805another application or imported from elsewhere.
     806
     807.. versionchanged:: 1.0
     808
     809The only exception to this rule is the following scenario: Models defined in
     810different applications have mutually referencing relationships::
     811
     812    # goods/models.py
     813    from django.db import models
     814    from production.models import Manufacturer
     815
     816    class Vehicle(models.Model):
     817        manufacturer = models.ForeignKey(Manufacturer)
     818        # ...
     819
     820::
     821
     822    # production/models.py
     823    from django.db import models
     824    from goods.models import Vehicle # This would introduce circular imports
     825
     826    class Manufacturer(models.Model):
     827        main_product = models.ForeignKey(Vehicle, related_name='lead_manufacturers')
     828
     829Using Python imports in this case would introduce circular imports between the
     830models files of both applications and this would keep them from working. That's
     831the reason why, in this particular case, you can use the name of a model in
     832string form to break the import loop::
     833
     834    # goods/models.py
     835    from django.db import models
     836    from production.models import Manufacturer
     837
     838    class Vehicle(models.Model):
     839        manufacturer = models.ForeignKey(Manufacturer)
     840        # ...
     841
     842::
     843
     844    # production/models.py
     845    from django.db import models
     846
     847    class Manufacturer(models.Model):
     848        main_product = models.ForeignKey('goods.Vehicle', related_name='lead_manufacturers')
    806849
    807850.. versionchanged:: 1.0
    808851   Refering models in other applications must include the application label.
    809852
    810 To refer to models defined in another
    811 application, you must instead explicitly specify the application label. For
    812 example, if the ``Manufacturer`` model above is defined in another application
    813 called ``production``, you'd need to use::
     853To refer to models defined in another application, you must instead explicitly
     854specify the application label. For example, if the ``Manufacturer`` model above
     855is defined in another application called ``production``, you'd need to use::
    814856
    815857    class Car(models.Model):
    816858        manufacturer = models.ForeignKey('production.Manufacturer')
Back to Top