instances.txt 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. ========================
  2. Model instance reference
  3. ========================
  4. .. currentmodule:: django.db.models
  5. This document describes the details of the ``Model`` API. It builds on the
  6. material presented in the :doc:`model </topics/db/models>` and :doc:`database
  7. query </topics/db/queries>` guides, so you'll probably want to read and
  8. understand those documents before reading this one.
  9. Throughout this reference we'll use the :ref:`example Weblog models
  10. <queryset-model-example>` presented in the :doc:`database query guide
  11. </topics/db/queries>`.
  12. Creating objects
  13. ================
  14. To create a new instance of a model, just instantiate it like any other Python
  15. class:
  16. .. class:: Model(**kwargs)
  17. The keyword arguments are simply the names of the fields you've defined on your
  18. model. Note that instantiating a model in no way touches your database; for
  19. that, you need to :meth:`~Model.save()`.
  20. .. note::
  21. You may be tempted to customize the model by overriding the ``__init__``
  22. method. If you do so, however, take care not to change the calling
  23. signature as any change may prevent the model instance from being saved.
  24. Rather than overriding ``__init__``, try using one of these approaches:
  25. 1. Add a classmethod on the model class::
  26. from django.db import models
  27. class Book(models.Model):
  28. title = models.CharField(max_length=100)
  29. @classmethod
  30. def create(cls, title):
  31. book = cls(title=title)
  32. # do something with the book
  33. return book
  34. book = Book.create("Pride and Prejudice")
  35. 2. Add a method on a custom manager (usually preferred)::
  36. class BookManager(models.Manager):
  37. def create_book(self, title):
  38. book = self.create(title=title)
  39. # do something with the book
  40. return book
  41. class Book(models.Model):
  42. title = models.CharField(max_length=100)
  43. objects = BookManager()
  44. book = Book.objects.create_book("Pride and Prejudice")
  45. .. _validating-objects:
  46. Validating objects
  47. ==================
  48. There are three steps involved in validating a model:
  49. 1. Validate the model fields - :meth:`Model.clean_fields()`
  50. 2. Validate the model as a whole - :meth:`Model.clean()`
  51. 3. Validate the field uniqueness - :meth:`Model.validate_unique()`
  52. All three steps are performed when you call a model's
  53. :meth:`~Model.full_clean()` method.
  54. When you use a :class:`~django.forms.ModelForm`, the call to
  55. :meth:`~django.forms.Form.is_valid()` will perform these validation steps for
  56. all the fields that are included on the form. See the :doc:`ModelForm
  57. documentation </topics/forms/modelforms>` for more information. You should only
  58. need to call a model's :meth:`~Model.full_clean()` method if you plan to handle
  59. validation errors yourself, or if you have excluded fields from the
  60. :class:`~django.forms.ModelForm` that require validation.
  61. .. method:: Model.full_clean(exclude=None, validate_unique=True)
  62. .. versionchanged:: 1.6
  63. The ``validate_unique`` parameter was added to allow skipping
  64. :meth:`Model.validate_unique()`. Previously, :meth:`Model.validate_unique()`
  65. was always called by ``full_clean``.
  66. This method calls :meth:`Model.clean_fields()`, :meth:`Model.clean()`, and
  67. :meth:`Model.validate_unique()` (if ``validate_unique`` is ``True``, in that
  68. order and raises a :exc:`~django.core.exceptions.ValidationError` that has a
  69. ``message_dict`` attribute containing errors from all three stages.
  70. The optional ``exclude`` argument can be used to provide a list of field names
  71. that can be excluded from validation and cleaning.
  72. :class:`~django.forms.ModelForm` uses this argument to exclude fields that
  73. aren't present on your form from being validated since any errors raised could
  74. not be corrected by the user.
  75. Note that ``full_clean()`` will *not* be called automatically when you call
  76. your model's :meth:`~Model.save()` method. You'll need to call it manually
  77. when you want to run one-step model validation for your own manually created
  78. models. For example::
  79. from django.core.exceptions import ValidationError
  80. try:
  81. article.full_clean()
  82. except ValidationError as e:
  83. # Do something based on the errors contained in e.message_dict.
  84. # Display them to a user, or handle them programmatically.
  85. pass
  86. The first step ``full_clean()`` performs is to clean each individual field.
  87. .. method:: Model.clean_fields(exclude=None)
  88. This method will validate all fields on your model. The optional ``exclude``
  89. argument lets you provide a list of field names to exclude from validation. It
  90. will raise a :exc:`~django.core.exceptions.ValidationError` if any fields fail
  91. validation.
  92. The second step ``full_clean()`` performs is to call :meth:`Model.clean()`.
  93. This method should be overridden to perform custom validation on your model.
  94. .. method:: Model.clean()
  95. This method should be used to provide custom model validation, and to modify
  96. attributes on your model if desired. For instance, you could use it to
  97. automatically provide a value for a field, or to do validation that requires
  98. access to more than a single field::
  99. import datetime
  100. from django.core.exceptions import ValidationError
  101. from django.db import models
  102. class Article(models.Model):
  103. ...
  104. def clean(self):
  105. # Don't allow draft entries to have a pub_date.
  106. if self.status == 'draft' and self.pub_date is not None:
  107. raise ValidationError('Draft entries may not have a publication date.')
  108. # Set the pub_date for published items if it hasn't been set already.
  109. if self.status == 'published' and self.pub_date is None:
  110. self.pub_date = datetime.date.today()
  111. Any :exc:`~django.core.exceptions.ValidationError` exceptions raised by
  112. ``Model.clean()`` will be stored in a special key error dictionary key,
  113. ``NON_FIELD_ERRORS``, that is used for errors that are tied to the entire model
  114. instead of to a specific field::
  115. from django.core.exceptions import ValidationError, NON_FIELD_ERRORS
  116. try:
  117. article.full_clean()
  118. except ValidationError as e:
  119. non_field_errors = e.message_dict[NON_FIELD_ERRORS]
  120. Finally, ``full_clean()`` will check any unique constraints on your model.
  121. .. method:: Model.validate_unique(exclude=None)
  122. This method is similar to :meth:`~Model.clean_fields`, but validates all
  123. uniqueness constraints on your model instead of individual field values. The
  124. optional ``exclude`` argument allows you to provide a list of field names to
  125. exclude from validation. It will raise a
  126. :exc:`~django.core.exceptions.ValidationError` if any fields fail validation.
  127. Note that if you provide an ``exclude`` argument to ``validate_unique()``, any
  128. :attr:`~django.db.models.Options.unique_together` constraint involving one of
  129. the fields you provided will not be checked.
  130. Saving objects
  131. ==============
  132. To save an object back to the database, call ``save()``:
  133. .. method:: Model.save([force_insert=False, force_update=False, using=DEFAULT_DB_ALIAS, update_fields=None])
  134. If you want customized saving behavior, you can override this ``save()``
  135. method. See :ref:`overriding-model-methods` for more details.
  136. The model save process also has some subtleties; see the sections below.
  137. Auto-incrementing primary keys
  138. ------------------------------
  139. If a model has an :class:`~django.db.models.AutoField` — an auto-incrementing
  140. primary key — then that auto-incremented value will be calculated and saved as
  141. an attribute on your object the first time you call ``save()``::
  142. >>> b2 = Blog(name='Cheddar Talk', tagline='Thoughts on cheese.')
  143. >>> b2.id # Returns None, because b doesn't have an ID yet.
  144. >>> b2.save()
  145. >>> b2.id # Returns the ID of your new object.
  146. There's no way to tell what the value of an ID will be before you call
  147. ``save()``, because that value is calculated by your database, not by Django.
  148. For convenience, each model has an :class:`~django.db.models.AutoField` named
  149. ``id`` by default unless you explicitly specify ``primary_key=True`` on a field
  150. in your model. See the documentation for :class:`~django.db.models.AutoField`
  151. for more details.
  152. The ``pk`` property
  153. ~~~~~~~~~~~~~~~~~~~
  154. .. attribute:: Model.pk
  155. Regardless of whether you define a primary key field yourself, or let Django
  156. supply one for you, each model will have a property called ``pk``. It behaves
  157. like a normal attribute on the model, but is actually an alias for whichever
  158. attribute is the primary key field for the model. You can read and set this
  159. value, just as you would for any other attribute, and it will update the
  160. correct field in the model.
  161. Explicitly specifying auto-primary-key values
  162. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  163. If a model has an :class:`~django.db.models.AutoField` but you want to define a
  164. new object's ID explicitly when saving, just define it explicitly before
  165. saving, rather than relying on the auto-assignment of the ID::
  166. >>> b3 = Blog(id=3, name='Cheddar Talk', tagline='Thoughts on cheese.')
  167. >>> b3.id # Returns 3.
  168. >>> b3.save()
  169. >>> b3.id # Returns 3.
  170. If you assign auto-primary-key values manually, make sure not to use an
  171. already-existing primary-key value! If you create a new object with an explicit
  172. primary-key value that already exists in the database, Django will assume you're
  173. changing the existing record rather than creating a new one.
  174. Given the above ``'Cheddar Talk'`` blog example, this example would override the
  175. previous record in the database::
  176. b4 = Blog(id=3, name='Not Cheddar', tagline='Anything but cheese.')
  177. b4.save() # Overrides the previous blog with ID=3!
  178. See `How Django knows to UPDATE vs. INSERT`_, below, for the reason this
  179. happens.
  180. Explicitly specifying auto-primary-key values is mostly useful for bulk-saving
  181. objects, when you're confident you won't have primary-key collision.
  182. What happens when you save?
  183. ---------------------------
  184. When you save an object, Django performs the following steps:
  185. 1. **Emit a pre-save signal.** The :doc:`signal </ref/signals>`
  186. :attr:`django.db.models.signals.pre_save` is sent, allowing any
  187. functions listening for that signal to take some customized
  188. action.
  189. 2. **Pre-process the data.** Each field on the object is asked to
  190. perform any automated data modification that the field may need
  191. to perform.
  192. Most fields do *no* pre-processing — the field data is kept as-is.
  193. Pre-processing is only used on fields that have special behavior. For
  194. example, if your model has a :class:`~django.db.models.DateField` with
  195. ``auto_now=True``, the pre-save phase will alter the data in the object
  196. to ensure that the date field contains the current date stamp. (Our
  197. documentation doesn't yet include a list of all the fields with this
  198. "special behavior.")
  199. 3. **Prepare the data for the database.** Each field is asked to provide
  200. its current value in a data type that can be written to the database.
  201. Most fields require *no* data preparation. Simple data types, such as
  202. integers and strings, are 'ready to write' as a Python object. However,
  203. more complex data types often require some modification.
  204. For example, :class:`~django.db.models.DateField` fields use a Python
  205. ``datetime`` object to store data. Databases don't store ``datetime``
  206. objects, so the field value must be converted into an ISO-compliant date
  207. string for insertion into the database.
  208. 4. **Insert the data into the database.** The pre-processed, prepared
  209. data is then composed into an SQL statement for insertion into the
  210. database.
  211. 5. **Emit a post-save signal.** The signal
  212. :attr:`django.db.models.signals.post_save` is sent, allowing
  213. any functions listening for that signal to take some customized
  214. action.
  215. How Django knows to UPDATE vs. INSERT
  216. -------------------------------------
  217. You may have noticed Django database objects use the same ``save()`` method
  218. for creating and changing objects. Django abstracts the need to use ``INSERT``
  219. or ``UPDATE`` SQL statements. Specifically, when you call ``save()``, Django
  220. follows this algorithm:
  221. * If the object's primary key attribute is set to a value that evaluates to
  222. ``True`` (i.e., a value other than ``None`` or the empty string), Django
  223. executes an ``UPDATE``.
  224. * If the object's primary key attribute is *not* set or if the ``UPDATE``
  225. didn't update anything, Django executes an ``INSERT``.
  226. .. versionchanged:: 1.6
  227. Previously Django used ``SELECT`` - if not found ``INSERT`` else ``UPDATE``
  228. algorithm. The old algorithm resulted in one more query in ``UPDATE`` case.
  229. The one gotcha here is that you should be careful not to specify a primary-key
  230. value explicitly when saving new objects, if you cannot guarantee the
  231. primary-key value is unused. For more on this nuance, see `Explicitly specifying
  232. auto-primary-key values`_ above and `Forcing an INSERT or UPDATE`_ below.
  233. .. _ref-models-force-insert:
  234. Forcing an INSERT or UPDATE
  235. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  236. In some rare circumstances, it's necessary to be able to force the
  237. :meth:`~Model.save()` method to perform an SQL ``INSERT`` and not fall back to
  238. doing an ``UPDATE``. Or vice-versa: update, if possible, but not insert a new
  239. row. In these cases you can pass the ``force_insert=True`` or
  240. ``force_update=True`` parameters to the :meth:`~Model.save()` method.
  241. Obviously, passing both parameters is an error: you cannot both insert *and*
  242. update at the same time!
  243. It should be very rare that you'll need to use these parameters. Django will
  244. almost always do the right thing and trying to override that will lead to
  245. errors that are difficult to track down. This feature is for advanced use
  246. only.
  247. Using ``update_fields`` will force an update similarly to ``force_update``.
  248. Updating attributes based on existing fields
  249. --------------------------------------------
  250. Sometimes you'll need to perform a simple arithmetic task on a field, such
  251. as incrementing or decrementing the current value. The obvious way to
  252. achieve this is to do something like::
  253. >>> product = Product.objects.get(name='Venezuelan Beaver Cheese')
  254. >>> product.number_sold += 1
  255. >>> product.save()
  256. If the old ``number_sold`` value retrieved from the database was 10, then
  257. the value of 11 will be written back to the database.
  258. This sequence has a standard update problem in that it contains a race
  259. condition. If another thread of execution has already saved an updated value
  260. after the current thread retrieved the old value, the current thread will only
  261. save the old value plus one, rather than the new (current) value plus one.
  262. The process can be made robust and slightly faster by expressing the update
  263. relative to the original field value, rather than as an explicit assignment of
  264. a new value. Django provides :ref:`F() expressions <query-expressions>` for
  265. performing this kind of relative update. Using ``F()`` expressions, the
  266. previous example is expressed as::
  267. >>> from django.db.models import F
  268. >>> product = Product.objects.get(name='Venezuelan Beaver Cheese')
  269. >>> product.number_sold = F('number_sold') + 1
  270. >>> product.save()
  271. This approach doesn't use the initial value from the database. Instead, it
  272. makes the database do the update based on whatever value is current at the time
  273. that the :meth:`~Model.save()` is executed.
  274. Once the object has been saved, you must reload the object in order to access
  275. the actual value that was applied to the updated field::
  276. >>> product = Products.objects.get(pk=product.pk)
  277. >>> print(product.number_sold)
  278. 42
  279. For more details, see the documentation on :ref:`F() expressions
  280. <query-expressions>` and their :ref:`use in update queries
  281. <topics-db-queries-update>`.
  282. Specifying which fields to save
  283. -------------------------------
  284. If ``save()`` is passed a list of field names in keyword argument
  285. ``update_fields``, only the fields named in that list will be updated.
  286. This may be desirable if you want to update just one or a few fields on
  287. an object. There will be a slight performance benefit from preventing
  288. all of the model fields from being updated in the database. For example::
  289. product.name = 'Name changed again'
  290. product.save(update_fields=['name'])
  291. The ``update_fields`` argument can be any iterable containing strings. An
  292. empty ``update_fields`` iterable will skip the save. A value of None will
  293. perform an update on all fields.
  294. Specifying ``update_fields`` will force an update.
  295. When saving a model fetched through deferred model loading
  296. (:meth:`~django.db.models.query.QuerySet.only()` or
  297. :meth:`~django.db.models.query.QuerySet.defer()`) only the fields loaded
  298. from the DB will get updated. In effect there is an automatic
  299. ``update_fields`` in this case. If you assign or change any deferred field
  300. value, the field will be added to the updated fields.
  301. Deleting objects
  302. ================
  303. .. method:: Model.delete([using=DEFAULT_DB_ALIAS])
  304. Issues a SQL ``DELETE`` for the object. This only deletes the object in the
  305. database; the Python instance will still exist and will still have data in
  306. its fields.
  307. For more details, including how to delete objects in bulk, see
  308. :ref:`topics-db-queries-delete`.
  309. If you want customized deletion behavior, you can override the ``delete()``
  310. method. See :ref:`overriding-model-methods` for more details.
  311. .. _model-instance-methods:
  312. Other model instance methods
  313. ============================
  314. A few object methods have special purposes.
  315. .. note::
  316. On Python 3, as all strings are natively considered Unicode, only use the
  317. ``__str__()`` method (the ``__unicode__()`` method is obsolete).
  318. If you'd like compatibility with Python 2, you can decorate your model class
  319. with :func:`~django.utils.encoding.python_2_unicode_compatible`.
  320. ``__unicode__``
  321. ---------------
  322. .. method:: Model.__unicode__()
  323. The ``__unicode__()`` method is called whenever you call ``unicode()`` on an
  324. object. Django uses ``unicode(obj)`` (or the related function, :meth:`str(obj)
  325. <Model.__str__>`) in a number of places. Most notably, to display an object in
  326. the Django admin site and as the value inserted into a template when it
  327. displays an object. Thus, you should always return a nice, human-readable
  328. representation of the model from the ``__unicode__()`` method.
  329. For example::
  330. from django.db import models
  331. class Person(models.Model):
  332. first_name = models.CharField(max_length=50)
  333. last_name = models.CharField(max_length=50)
  334. def __unicode__(self):
  335. return u'%s %s' % (self.first_name, self.last_name)
  336. If you define a ``__unicode__()`` method on your model and not a
  337. :meth:`~Model.__str__()` method, Django will automatically provide you with a
  338. :meth:`~Model.__str__()` that calls ``__unicode__()`` and then converts the
  339. result correctly to a UTF-8 encoded string object. This is recommended
  340. development practice: define only ``__unicode__()`` and let Django take care of
  341. the conversion to string objects when required.
  342. ``__str__``
  343. -----------
  344. .. method:: Model.__str__()
  345. The ``__str__()`` method is called whenever you call ``str()`` on an object. The main use for this method directly inside Django is when the ``repr()`` output of a model is displayed anywhere (for example, in debugging output).
  346. Thus, you should return a nice, human-readable string for the object's
  347. ``__str__()``. It isn't required to put ``__str__()`` methods everywhere if you have sensible :meth:`~Model.__unicode__()` methods.
  348. The previous :meth:`~Model.__unicode__()` example could be similarly written
  349. using ``__str__()`` like this::
  350. from django.db import models
  351. from django.utils.encoding import force_bytes
  352. class Person(models.Model):
  353. first_name = models.CharField(max_length=50)
  354. last_name = models.CharField(max_length=50)
  355. def __str__(self):
  356. # Note use of django.utils.encoding.force_bytes() here because
  357. # first_name and last_name will be unicode strings.
  358. return force_bytes('%s %s' % (self.first_name, self.last_name))
  359. ``__eq__``
  360. ----------
  361. .. method:: Model.__eq__()
  362. The equality method is defined such that instances with the same primary
  363. key value and the same concrete class are considered equal. For proxy
  364. models, concrete class is defined as the model's first non-proxy parent;
  365. for all other models it is simply the model's class.
  366. For example::
  367. form django.db import models
  368. class MyModel(models.Model):
  369. id = models.AutoField(primary_key=True)
  370. class MyProxyModel(MyModel):
  371. class Meta:
  372. proxy = True
  373. class MultitableInherited(MyModel):
  374. pass
  375. MyModel(id=1) == MyModel(id=1)
  376. MyModel(id=1) == MyProxyModel(id=1)
  377. MyModel(id=1) != MultitableInherited(id=1)
  378. MyModel(id=1) != MyModel(id=2)
  379. .. versionchanged:: 1.7
  380. In previous versions only instances of the exact same class and same
  381. primary key value were considered equal.
  382. ``__hash__``
  383. ------------
  384. .. method:: Model.__hash__()
  385. The ``__hash__`` method is based on the instance's primary key value. It
  386. is effectively hash(obj.pk). If the instance doesn't have a primary key
  387. value then a ``TypeError`` will be raised (otherwise the ``__hash__``
  388. method would return different values before and after the instance is
  389. saved, but changing the ``__hash__`` value of an instance `is forbidden
  390. in Python`_).
  391. .. versionchanged:: 1.7
  392. In previous versions instance's without primary key value were
  393. hashable.
  394. .. _is forbidden in Python: http://docs.python.org/reference/datamodel.html#object.__hash__
  395. ``get_absolute_url``
  396. --------------------
  397. .. method:: Model.get_absolute_url()
  398. Define a ``get_absolute_url()`` method to tell Django how to calculate the
  399. canonical URL for an object. To callers, this method should appear to return a
  400. string that can be used to refer to the object over HTTP.
  401. For example::
  402. def get_absolute_url(self):
  403. return "/people/%i/" % self.id
  404. (Whilst this code is correct and simple, it may not be the most portable way to
  405. write this kind of method. The :func:`~django.core.urlresolvers.reverse`
  406. function is usually the best approach.)
  407. For example::
  408. def get_absolute_url(self):
  409. from django.core.urlresolvers import reverse
  410. return reverse('people.views.details', args=[str(self.id)])
  411. One place Django uses ``get_absolute_url()`` is in the admin app. If an object
  412. defines this method, the object-editing page will have a "View on site" link
  413. that will jump you directly to the object's public view, as given by
  414. ``get_absolute_url()``.
  415. Similarly, a couple of other bits of Django, such as the :doc:`syndication feed
  416. framework </ref/contrib/syndication>`, use ``get_absolute_url()`` when it is
  417. defined. If it makes sense for your model's instances to each have a unique
  418. URL, you should define ``get_absolute_url()``.
  419. It's good practice to use ``get_absolute_url()`` in templates, instead of
  420. hard-coding your objects' URLs. For example, this template code is bad:
  421. .. code-block:: html+django
  422. <!-- BAD template code. Avoid! -->
  423. <a href="/people/{{ object.id }}/">{{ object.name }}</a>
  424. This template code is much better:
  425. .. code-block:: html+django
  426. <a href="{{ object.get_absolute_url }}">{{ object.name }}</a>
  427. The logic here is that if you change the URL structure of your objects, even
  428. for something simple such as correcting a spelling error, you don't want to
  429. have to track down every place that the URL might be created. Specify it once,
  430. in ``get_absolute_url()`` and have all your other code call that one place.
  431. .. note::
  432. The string you return from ``get_absolute_url()`` **must** contain only
  433. ASCII characters (required by the URI specfication, :rfc:`2396`) and be
  434. URL-encoded, if necessary.
  435. Code and templates calling ``get_absolute_url()`` should be able to use the
  436. result directly without any further processing. You may wish to use the
  437. ``django.utils.encoding.iri_to_uri()`` function to help with this if you
  438. are using unicode strings containing characters outside the ASCII range at
  439. all.
  440. The ``permalink`` decorator
  441. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  442. .. warning::
  443. The ``permalink`` decorator is no longer recommended. You should use
  444. :func:`~django.core.urlresolvers.reverse` in the body of your
  445. ``get_absolute_url`` method instead.
  446. In early versions of Django, there wasn't an easy way to use URLs defined in
  447. URLconf file inside :meth:`~django.db.models.Model.get_absolute_url`. That
  448. meant you would need to define the URL both in URLConf and
  449. :meth:`~django.db.models.Model.get_absolute_url`. The ``permalink`` decorator
  450. was added to overcome this DRY principle violation. However, since the
  451. introduction of :func:`~django.core.urlresolvers.reverse` there is no
  452. reason to use ``permalink`` any more.
  453. .. function:: permalink()
  454. This decorator takes the name of a URL pattern (either a view name or a URL
  455. pattern name) and a list of position or keyword arguments and uses the URLconf
  456. patterns to construct the correct, full URL. It returns a string for the
  457. correct URL, with all parameters substituted in the correct positions.
  458. The ``permalink`` decorator is a Python-level equivalent to the :ttag:`url`
  459. template tag and a high-level wrapper for the
  460. :func:`~django.core.urlresolvers.reverse` function.
  461. An example should make it clear how to use ``permalink()``. Suppose your URLconf
  462. contains a line such as::
  463. (r'^people/(\d+)/$', 'people.views.details'),
  464. ...your model could have a :meth:`~django.db.models.Model.get_absolute_url`
  465. method that looked like this::
  466. from django.db import models
  467. @models.permalink
  468. def get_absolute_url(self):
  469. return ('people.views.details', [str(self.id)])
  470. Similarly, if you had a URLconf entry that looked like::
  471. (r'/archive/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/$', archive_view)
  472. ...you could reference this using ``permalink()`` as follows::
  473. @models.permalink
  474. def get_absolute_url(self):
  475. return ('archive_view', (), {
  476. 'year': self.created.year,
  477. 'month': self.created.strftime('%m'),
  478. 'day': self.created.strftime('%d')})
  479. Notice that we specify an empty sequence for the second parameter in this case,
  480. because we only want to pass keyword parameters, not positional ones.
  481. In this way, you're associating the model's absolute path with the view that is
  482. used to display it, without repeating the view's URL information anywhere. You
  483. can still use the :meth:`~django.db.models.Model.get_absolute_url()` method in
  484. templates, as before.
  485. In some cases, such as the use of generic views or the re-use of custom views
  486. for multiple models, specifying the view function may confuse the reverse URL
  487. matcher (because multiple patterns point to the same view). For that case,
  488. Django has :ref:`named URL patterns <naming-url-patterns>`. Using a named URL
  489. pattern, it's possible to give a name to a pattern, and then reference the name
  490. rather than the view function. A named URL pattern is defined by replacing the
  491. pattern tuple by a call to the ``url`` function)::
  492. from django.conf.urls import url
  493. url(r'^people/(\d+)/$', 'blog_views.generic_detail', name='people_view'),
  494. ...and then using that name to perform the reverse URL resolution instead
  495. of the view name::
  496. from django.db import models
  497. @models.permalink
  498. def get_absolute_url(self):
  499. return ('people_view', [str(self.id)])
  500. More details on named URL patterns are in the :doc:`URL dispatch documentation
  501. </topics/http/urls>`.
  502. Extra instance methods
  503. ======================
  504. In addition to :meth:`~Model.save()`, :meth:`~Model.delete()`, a model object
  505. might have some of the following methods:
  506. .. method:: Model.get_FOO_display()
  507. For every field that has :attr:`~django.db.models.Field.choices` set, the
  508. object will have a ``get_FOO_display()`` method, where ``FOO`` is the name of
  509. the field. This method returns the "human-readable" value of the field.
  510. For example::
  511. from django.db import models
  512. class Person(models.Model):
  513. SHIRT_SIZES = (
  514. (u'S', u'Small'),
  515. (u'M', u'Medium'),
  516. (u'L', u'Large'),
  517. )
  518. name = models.CharField(max_length=60)
  519. shirt_size = models.CharField(max_length=2, choices=SHIRT_SIZES)
  520. ::
  521. >>> p = Person(name="Fred Flintstone", shirt_size="L")
  522. >>> p.save()
  523. >>> p.shirt_size
  524. u'L'
  525. >>> p.get_shirt_size_display()
  526. u'Large'
  527. .. method:: Model.get_next_by_FOO(\**kwargs)
  528. .. method:: Model.get_previous_by_FOO(\**kwargs)
  529. For every :class:`~django.db.models.DateField` and
  530. :class:`~django.db.models.DateTimeField` that does not have :attr:`null=True
  531. <django.db.models.Field.null>`, the object will have ``get_next_by_FOO()`` and
  532. ``get_previous_by_FOO()`` methods, where ``FOO`` is the name of the field. This
  533. returns the next and previous object with respect to the date field, raising
  534. a :exc:`~django.core.exceptions.DoesNotExist` exception when appropriate.
  535. Both of these methods will perform their queries using the default
  536. manager for the model. If you need to emulate filtering used by a
  537. custom manager, or want to perform one-off custom filtering, both
  538. methods also accept optional keyword arguments, which should be in the
  539. format described in :ref:`Field lookups <field-lookups>`.
  540. Note that in the case of identical date values, these methods will use the
  541. primary key as a tie-breaker. This guarantees that no records are skipped or
  542. duplicated. That also means you cannot use those methods on unsaved objects.