instances.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  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. Customizing model loading
  46. -------------------------
  47. .. classmethod:: Model.from_db(db, field_names, values)
  48. The ``from_db()`` method can be used to customize model instance creation
  49. when loading from the database.
  50. The ``db`` argument contains the database alias for the database the model
  51. is loaded from, ``field_names`` contains the names of all loaded fields, and
  52. ``values`` contains the loaded values for each field in ``field_names``. The
  53. ``field_names`` are in the same order as the ``values``. If all of the model's
  54. fields are present, then ``values`` are guaranteed to be in the order
  55. ``__init__()`` expects them. That is, the instance can be created by
  56. ``cls(*values)``. If any fields are deferred, they won't appear in
  57. ``field_names``. In that case, assign a value of ``django.db.models.DEFERRED``
  58. to each of the missing fields.
  59. In addition to creating the new model, the ``from_db()`` method must set the
  60. ``adding`` and ``db`` flags in the new instance's ``_state`` attribute.
  61. Below is an example showing how to record the initial values of fields that
  62. are loaded from the database::
  63. from django.db.models import DEFERRED
  64. @classmethod
  65. def from_db(cls, db, field_names, values):
  66. # Default implementation of from_db() (subject to change and could
  67. # be replaced with super()).
  68. if len(values) != len(cls._meta.concrete_fields):
  69. values = list(values)
  70. values.reverse()
  71. values = [
  72. values.pop() if f.attname in field_names else DEFERRED
  73. for f in cls._meta.concrete_fields
  74. ]
  75. instance = cls(*values)
  76. instance._state.adding = False
  77. instance._state.db = db
  78. # customization to store the original field values on the instance
  79. instance._loaded_values = dict(zip(field_names, values))
  80. return instance
  81. def save(self, *args, **kwargs):
  82. # Check how the current values differ from ._loaded_values. For example,
  83. # prevent changing the creator_id of the model. (This example doesn't
  84. # support cases where 'creator_id' is deferred).
  85. if not self._state.adding and (
  86. self.creator_id != self._loaded_values['creator_id']):
  87. raise ValueError("Updating the value of creator isn't allowed")
  88. super().save(*args, **kwargs)
  89. The example above shows a full ``from_db()`` implementation to clarify how that
  90. is done. In this case it would of course be possible to just use ``super()`` call
  91. in the ``from_db()`` method.
  92. Refreshing objects from database
  93. ================================
  94. If you delete a field from a model instance, accessing it again reloads the
  95. value from the database::
  96. >>> obj = MyModel.objects.first()
  97. >>> del obj.field
  98. >>> obj.field # Loads the field from the database
  99. .. method:: Model.refresh_from_db(using=None, fields=None)
  100. If you need to reload a model's values from the database, you can use the
  101. ``refresh_from_db()`` method. When this method is called without arguments the
  102. following is done:
  103. 1. All non-deferred fields of the model are updated to the values currently
  104. present in the database.
  105. 2. The previously loaded related instances for which the relation's value is no
  106. longer valid are removed from the reloaded instance. For example, if you have
  107. a foreign key from the reloaded instance to another model with name
  108. ``Author``, then if ``obj.author_id != obj.author.id``, ``obj.author`` will
  109. be thrown away, and when next accessed it will be reloaded with the value of
  110. ``obj.author_id``.
  111. Only fields of the model are reloaded from the database. Other
  112. database-dependent values such as annotations aren't reloaded. Any
  113. :func:`@cached_property <django.utils.functional.cached_property>` attributes
  114. aren't cleared either.
  115. The reloading happens from the database the instance was loaded from, or from
  116. the default database if the instance wasn't loaded from the database. The
  117. ``using`` argument can be used to force the database used for reloading.
  118. It is possible to force the set of fields to be loaded by using the ``fields``
  119. argument.
  120. For example, to test that an ``update()`` call resulted in the expected
  121. update, you could write a test similar to this::
  122. def test_update_result(self):
  123. obj = MyModel.objects.create(val=1)
  124. MyModel.objects.filter(pk=obj.pk).update(val=F('val') + 1)
  125. # At this point obj.val is still 1, but the value in the database
  126. # was updated to 2. The object's updated value needs to be reloaded
  127. # from the database.
  128. obj.refresh_from_db()
  129. self.assertEqual(obj.val, 2)
  130. Note that when deferred fields are accessed, the loading of the deferred
  131. field's value happens through this method. Thus it is possible to customize
  132. the way deferred loading happens. The example below shows how one can reload
  133. all of the instance's fields when a deferred field is reloaded::
  134. class ExampleModel(models.Model):
  135. def refresh_from_db(self, using=None, fields=None, **kwargs):
  136. # fields contains the name of the deferred field to be
  137. # loaded.
  138. if fields is not None:
  139. fields = set(fields)
  140. deferred_fields = self.get_deferred_fields()
  141. # If any deferred field is going to be loaded
  142. if fields.intersection(deferred_fields):
  143. # then load all of them
  144. fields = fields.union(deferred_fields)
  145. super().refresh_from_db(using, fields, **kwargs)
  146. .. method:: Model.get_deferred_fields()
  147. A helper method that returns a set containing the attribute names of all those
  148. fields that are currently deferred for this model.
  149. .. _validating-objects:
  150. Validating objects
  151. ==================
  152. There are three steps involved in validating a model:
  153. 1. Validate the model fields - :meth:`Model.clean_fields()`
  154. 2. Validate the model as a whole - :meth:`Model.clean()`
  155. 3. Validate the field uniqueness - :meth:`Model.validate_unique()`
  156. All three steps are performed when you call a model's
  157. :meth:`~Model.full_clean()` method.
  158. When you use a :class:`~django.forms.ModelForm`, the call to
  159. :meth:`~django.forms.Form.is_valid()` will perform these validation steps for
  160. all the fields that are included on the form. See the :doc:`ModelForm
  161. documentation </topics/forms/modelforms>` for more information. You should only
  162. need to call a model's :meth:`~Model.full_clean()` method if you plan to handle
  163. validation errors yourself, or if you have excluded fields from the
  164. :class:`~django.forms.ModelForm` that require validation.
  165. .. method:: Model.full_clean(exclude=None, validate_unique=True)
  166. This method calls :meth:`Model.clean_fields()`, :meth:`Model.clean()`, and
  167. :meth:`Model.validate_unique()` (if ``validate_unique`` is ``True``), in that
  168. order and raises a :exc:`~django.core.exceptions.ValidationError` that has a
  169. ``message_dict`` attribute containing errors from all three stages.
  170. The optional ``exclude`` argument can be used to provide a list of field names
  171. that can be excluded from validation and cleaning.
  172. :class:`~django.forms.ModelForm` uses this argument to exclude fields that
  173. aren't present on your form from being validated since any errors raised could
  174. not be corrected by the user.
  175. Note that ``full_clean()`` will *not* be called automatically when you call
  176. your model's :meth:`~Model.save()` method. You'll need to call it manually
  177. when you want to run one-step model validation for your own manually created
  178. models. For example::
  179. from django.core.exceptions import ValidationError
  180. try:
  181. article.full_clean()
  182. except ValidationError as e:
  183. # Do something based on the errors contained in e.message_dict.
  184. # Display them to a user, or handle them programmatically.
  185. pass
  186. The first step ``full_clean()`` performs is to clean each individual field.
  187. .. method:: Model.clean_fields(exclude=None)
  188. This method will validate all fields on your model. The optional ``exclude``
  189. argument lets you provide a list of field names to exclude from validation. It
  190. will raise a :exc:`~django.core.exceptions.ValidationError` if any fields fail
  191. validation.
  192. The second step ``full_clean()`` performs is to call :meth:`Model.clean()`.
  193. This method should be overridden to perform custom validation on your model.
  194. .. method:: Model.clean()
  195. This method should be used to provide custom model validation, and to modify
  196. attributes on your model if desired. For instance, you could use it to
  197. automatically provide a value for a field, or to do validation that requires
  198. access to more than a single field::
  199. import datetime
  200. from django.core.exceptions import ValidationError
  201. from django.db import models
  202. from django.utils.translation import gettext_lazy as _
  203. class Article(models.Model):
  204. ...
  205. def clean(self):
  206. # Don't allow draft entries to have a pub_date.
  207. if self.status == 'draft' and self.pub_date is not None:
  208. raise ValidationError(_('Draft entries may not have a publication date.'))
  209. # Set the pub_date for published items if it hasn't been set already.
  210. if self.status == 'published' and self.pub_date is None:
  211. self.pub_date = datetime.date.today()
  212. Note, however, that like :meth:`Model.full_clean()`, a model's ``clean()``
  213. method is not invoked when you call your model's :meth:`~Model.save()` method.
  214. In the above example, the :exc:`~django.core.exceptions.ValidationError`
  215. exception raised by ``Model.clean()`` was instantiated with a string, so it
  216. will be stored in a special error dictionary key,
  217. :data:`~django.core.exceptions.NON_FIELD_ERRORS`. This key is used for errors
  218. that are tied to the entire model instead of to a specific field::
  219. from django.core.exceptions import ValidationError, NON_FIELD_ERRORS
  220. try:
  221. article.full_clean()
  222. except ValidationError as e:
  223. non_field_errors = e.message_dict[NON_FIELD_ERRORS]
  224. To assign exceptions to a specific field, instantiate the
  225. :exc:`~django.core.exceptions.ValidationError` with a dictionary, where the
  226. keys are the field names. We could update the previous example to assign the
  227. error to the ``pub_date`` field::
  228. class Article(models.Model):
  229. ...
  230. def clean(self):
  231. # Don't allow draft entries to have a pub_date.
  232. if self.status == 'draft' and self.pub_date is not None:
  233. raise ValidationError({'pub_date': _('Draft entries may not have a publication date.')})
  234. ...
  235. If you detect errors in multiple fields during ``Model.clean()``, you can also
  236. pass a dictionary mapping field names to errors::
  237. raise ValidationError({
  238. 'title': ValidationError(_('Missing title.'), code='required'),
  239. 'pub_date': ValidationError(_('Invalid date.'), code='invalid'),
  240. })
  241. Finally, ``full_clean()`` will check any unique constraints on your model.
  242. .. admonition:: How to raise field-specific validation errors if those fields don't appear in a ``ModelForm``
  243. You can't raise validation errors in ``Model.clean()`` for fields that
  244. don't appear in a model form (a form may limit its fields using
  245. ``Meta.fields`` or ``Meta.exclude``). Doing so will raise a ``ValueError``
  246. because the validation error won't be able to be associated with the
  247. excluded field.
  248. To work around this dilemma, instead override :meth:`Model.clean_fields()
  249. <django.db.models.Model.clean_fields>` as it receives the list of fields
  250. that are excluded from validation. For example::
  251. class Article(models.Model):
  252. ...
  253. def clean_fields(self, exclude=None):
  254. super().clean_fields(exclude=exclude)
  255. if self.status == 'draft' and self.pub_date is not None:
  256. if exclude and 'status' in exclude:
  257. raise ValidationError(
  258. _('Draft entries may not have a publication date.')
  259. )
  260. else:
  261. raise ValidationError({
  262. 'status': _(
  263. 'Set status to draft if there is not a '
  264. 'publication date.'
  265. ),
  266. })
  267. .. method:: Model.validate_unique(exclude=None)
  268. This method is similar to :meth:`~Model.clean_fields`, but validates all
  269. uniqueness constraints on your model instead of individual field values. The
  270. optional ``exclude`` argument allows you to provide a list of field names to
  271. exclude from validation. It will raise a
  272. :exc:`~django.core.exceptions.ValidationError` if any fields fail validation.
  273. Note that if you provide an ``exclude`` argument to ``validate_unique()``, any
  274. :attr:`~django.db.models.Options.unique_together` constraint involving one of
  275. the fields you provided will not be checked.
  276. Saving objects
  277. ==============
  278. To save an object back to the database, call ``save()``:
  279. .. method:: Model.save(force_insert=False, force_update=False, using=DEFAULT_DB_ALIAS, update_fields=None)
  280. If you want customized saving behavior, you can override this ``save()``
  281. method. See :ref:`overriding-model-methods` for more details.
  282. The model save process also has some subtleties; see the sections below.
  283. Auto-incrementing primary keys
  284. ------------------------------
  285. If a model has an :class:`~django.db.models.AutoField` — an auto-incrementing
  286. primary key — then that auto-incremented value will be calculated and saved as
  287. an attribute on your object the first time you call ``save()``::
  288. >>> b2 = Blog(name='Cheddar Talk', tagline='Thoughts on cheese.')
  289. >>> b2.id # Returns None, because b doesn't have an ID yet.
  290. >>> b2.save()
  291. >>> b2.id # Returns the ID of your new object.
  292. There's no way to tell what the value of an ID will be before you call
  293. ``save()``, because that value is calculated by your database, not by Django.
  294. For convenience, each model has an :class:`~django.db.models.AutoField` named
  295. ``id`` by default unless you explicitly specify ``primary_key=True`` on a field
  296. in your model. See the documentation for :class:`~django.db.models.AutoField`
  297. for more details.
  298. The ``pk`` property
  299. ~~~~~~~~~~~~~~~~~~~
  300. .. attribute:: Model.pk
  301. Regardless of whether you define a primary key field yourself, or let Django
  302. supply one for you, each model will have a property called ``pk``. It behaves
  303. like a normal attribute on the model, but is actually an alias for whichever
  304. attribute is the primary key field for the model. You can read and set this
  305. value, just as you would for any other attribute, and it will update the
  306. correct field in the model.
  307. Explicitly specifying auto-primary-key values
  308. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  309. If a model has an :class:`~django.db.models.AutoField` but you want to define a
  310. new object's ID explicitly when saving, just define it explicitly before
  311. saving, rather than relying on the auto-assignment of the ID::
  312. >>> b3 = Blog(id=3, name='Cheddar Talk', tagline='Thoughts on cheese.')
  313. >>> b3.id # Returns 3.
  314. >>> b3.save()
  315. >>> b3.id # Returns 3.
  316. If you assign auto-primary-key values manually, make sure not to use an
  317. already-existing primary-key value! If you create a new object with an explicit
  318. primary-key value that already exists in the database, Django will assume you're
  319. changing the existing record rather than creating a new one.
  320. Given the above ``'Cheddar Talk'`` blog example, this example would override the
  321. previous record in the database::
  322. b4 = Blog(id=3, name='Not Cheddar', tagline='Anything but cheese.')
  323. b4.save() # Overrides the previous blog with ID=3!
  324. See `How Django knows to UPDATE vs. INSERT`_, below, for the reason this
  325. happens.
  326. Explicitly specifying auto-primary-key values is mostly useful for bulk-saving
  327. objects, when you're confident you won't have primary-key collision.
  328. If you're using PostgreSQL, the sequence associated with the primary key might
  329. need to be updated; see :ref:`manually-specified-autoincrement-pk`.
  330. What happens when you save?
  331. ---------------------------
  332. When you save an object, Django performs the following steps:
  333. #. **Emit a pre-save signal.** The :data:`~django.db.models.signals.pre_save`
  334. signal is sent, allowing any functions listening for that signal to do
  335. something.
  336. #. **Preprocess the data.** Each field's
  337. :meth:`~django.db.models.Field.pre_save` method is called to perform any
  338. automated data modification that's needed. For example, the date/time fields
  339. override ``pre_save()`` to implement
  340. :attr:`~django.db.models.DateField.auto_now_add` and
  341. :attr:`~django.db.models.DateField.auto_now`.
  342. #. **Prepare the data for the database.** Each field's
  343. :meth:`~django.db.models.Field.get_db_prep_save` method is asked to provide
  344. its current value in a data type that can be written to the database.
  345. Most fields don't require data preparation. Simple data types, such as
  346. integers and strings, are 'ready to write' as a Python object. However, more
  347. complex data types often require some modification.
  348. For example, :class:`~django.db.models.DateField` fields use a Python
  349. ``datetime`` object to store data. Databases don't store ``datetime``
  350. objects, so the field value must be converted into an ISO-compliant date
  351. string for insertion into the database.
  352. #. **Insert the data into the database.** The preprocessed, prepared data is
  353. composed into an SQL statement for insertion into the database.
  354. #. **Emit a post-save signal.** The :data:`~django.db.models.signals.post_save`
  355. signal is sent, allowing any functions listening for that signal to do
  356. something.
  357. How Django knows to UPDATE vs. INSERT
  358. -------------------------------------
  359. You may have noticed Django database objects use the same ``save()`` method
  360. for creating and changing objects. Django abstracts the need to use ``INSERT``
  361. or ``UPDATE`` SQL statements. Specifically, when you call ``save()``, Django
  362. follows this algorithm:
  363. * If the object's primary key attribute is set to a value that evaluates to
  364. ``True`` (i.e., a value other than ``None`` or the empty string), Django
  365. executes an ``UPDATE``.
  366. * If the object's primary key attribute is *not* set or if the ``UPDATE``
  367. didn't update anything, Django executes an ``INSERT``.
  368. The one gotcha here is that you should be careful not to specify a primary-key
  369. value explicitly when saving new objects, if you cannot guarantee the
  370. primary-key value is unused. For more on this nuance, see `Explicitly specifying
  371. auto-primary-key values`_ above and `Forcing an INSERT or UPDATE`_ below.
  372. In Django 1.5 and earlier, Django did a ``SELECT`` when the primary key
  373. attribute was set. If the ``SELECT`` found a row, then Django did an ``UPDATE``,
  374. otherwise it did an ``INSERT``. The old algorithm results in one more query in
  375. the ``UPDATE`` case. There are some rare cases where the database doesn't
  376. report that a row was updated even if the database contains a row for the
  377. object's primary key value. An example is the PostgreSQL ``ON UPDATE`` trigger
  378. which returns ``NULL``. In such cases it is possible to revert to the old
  379. algorithm by setting the :attr:`~django.db.models.Options.select_on_save`
  380. option to ``True``.
  381. .. _ref-models-force-insert:
  382. Forcing an INSERT or UPDATE
  383. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  384. In some rare circumstances, it's necessary to be able to force the
  385. :meth:`~Model.save()` method to perform an SQL ``INSERT`` and not fall back to
  386. doing an ``UPDATE``. Or vice-versa: update, if possible, but not insert a new
  387. row. In these cases you can pass the ``force_insert=True`` or
  388. ``force_update=True`` parameters to the :meth:`~Model.save()` method.
  389. Obviously, passing both parameters is an error: you cannot both insert *and*
  390. update at the same time!
  391. It should be very rare that you'll need to use these parameters. Django will
  392. almost always do the right thing and trying to override that will lead to
  393. errors that are difficult to track down. This feature is for advanced use
  394. only.
  395. Using ``update_fields`` will force an update similarly to ``force_update``.
  396. .. _ref-models-field-updates-using-f-expressions:
  397. Updating attributes based on existing fields
  398. --------------------------------------------
  399. Sometimes you'll need to perform a simple arithmetic task on a field, such
  400. as incrementing or decrementing the current value. The obvious way to
  401. achieve this is to do something like::
  402. >>> product = Product.objects.get(name='Venezuelan Beaver Cheese')
  403. >>> product.number_sold += 1
  404. >>> product.save()
  405. If the old ``number_sold`` value retrieved from the database was 10, then
  406. the value of 11 will be written back to the database.
  407. The process can be made robust, :ref:`avoiding a race condition
  408. <avoiding-race-conditions-using-f>`, as well as slightly faster by expressing
  409. the update relative to the original field value, rather than as an explicit
  410. assignment of a new value. Django provides :class:`F expressions
  411. <django.db.models.F>` for performing this kind of relative update. Using
  412. :class:`F expressions <django.db.models.F>`, the previous example is expressed
  413. as::
  414. >>> from django.db.models import F
  415. >>> product = Product.objects.get(name='Venezuelan Beaver Cheese')
  416. >>> product.number_sold = F('number_sold') + 1
  417. >>> product.save()
  418. For more details, see the documentation on :class:`F expressions
  419. <django.db.models.F>` and their :ref:`use in update queries
  420. <topics-db-queries-update>`.
  421. Specifying which fields to save
  422. -------------------------------
  423. If ``save()`` is passed a list of field names in keyword argument
  424. ``update_fields``, only the fields named in that list will be updated.
  425. This may be desirable if you want to update just one or a few fields on
  426. an object. There will be a slight performance benefit from preventing
  427. all of the model fields from being updated in the database. For example::
  428. product.name = 'Name changed again'
  429. product.save(update_fields=['name'])
  430. The ``update_fields`` argument can be any iterable containing strings. An
  431. empty ``update_fields`` iterable will skip the save. A value of None will
  432. perform an update on all fields.
  433. Specifying ``update_fields`` will force an update.
  434. When saving a model fetched through deferred model loading
  435. (:meth:`~django.db.models.query.QuerySet.only()` or
  436. :meth:`~django.db.models.query.QuerySet.defer()`) only the fields loaded
  437. from the DB will get updated. In effect there is an automatic
  438. ``update_fields`` in this case. If you assign or change any deferred field
  439. value, the field will be added to the updated fields.
  440. Deleting objects
  441. ================
  442. .. method:: Model.delete(using=DEFAULT_DB_ALIAS, keep_parents=False)
  443. Issues an SQL ``DELETE`` for the object. This only deletes the object in the
  444. database; the Python instance will still exist and will still have data in
  445. its fields. This method returns the number of objects deleted and a dictionary
  446. with the number of deletions per object type.
  447. For more details, including how to delete objects in bulk, see
  448. :ref:`topics-db-queries-delete`.
  449. If you want customized deletion behavior, you can override the ``delete()``
  450. method. See :ref:`overriding-model-methods` for more details.
  451. Sometimes with :ref:`multi-table inheritance <multi-table-inheritance>` you may
  452. want to delete only a child model's data. Specifying ``keep_parents=True`` will
  453. keep the parent model's data.
  454. Pickling objects
  455. ================
  456. When you :mod:`pickle` a model, its current state is pickled. When you unpickle
  457. it, it'll contain the model instance at the moment it was pickled, rather than
  458. the data that's currently in the database.
  459. .. admonition:: You can't share pickles between versions
  460. Pickles of models are only valid for the version of Django that
  461. was used to generate them. If you generate a pickle using Django
  462. version N, there is no guarantee that pickle will be readable with
  463. Django version N+1. Pickles should not be used as part of a long-term
  464. archival strategy.
  465. Since pickle compatibility errors can be difficult to diagnose, such as
  466. silently corrupted objects, a ``RuntimeWarning`` is raised when you try to
  467. unpickle a model in a Django version that is different than the one in
  468. which it was pickled.
  469. .. _model-instance-methods:
  470. Other model instance methods
  471. ============================
  472. A few object methods have special purposes.
  473. ``__str__()``
  474. -------------
  475. .. method:: Model.__str__()
  476. The ``__str__()`` method is called whenever you call ``str()`` on an object.
  477. Django uses ``str(obj)`` in a number of places. Most notably, to display an
  478. object in the Django admin site and as the value inserted into a template when
  479. it displays an object. Thus, you should always return a nice, human-readable
  480. representation of the model from the ``__str__()`` method.
  481. For example::
  482. from django.db import models
  483. class Person(models.Model):
  484. first_name = models.CharField(max_length=50)
  485. last_name = models.CharField(max_length=50)
  486. def __str__(self):
  487. return '%s %s' % (self.first_name, self.last_name)
  488. ``__eq__()``
  489. ------------
  490. .. method:: Model.__eq__()
  491. The equality method is defined such that instances with the same primary
  492. key value and the same concrete class are considered equal, except that
  493. instances with a primary key value of ``None`` aren't equal to anything except
  494. themselves. For proxy models, concrete class is defined as the model's first
  495. non-proxy parent; for all other models it's simply the model's class.
  496. For example::
  497. from django.db import models
  498. class MyModel(models.Model):
  499. id = models.AutoField(primary_key=True)
  500. class MyProxyModel(MyModel):
  501. class Meta:
  502. proxy = True
  503. class MultitableInherited(MyModel):
  504. pass
  505. # Primary keys compared
  506. MyModel(id=1) == MyModel(id=1)
  507. MyModel(id=1) != MyModel(id=2)
  508. # Primay keys are None
  509. MyModel(id=None) != MyModel(id=None)
  510. # Same instance
  511. instance = MyModel(id=None)
  512. instance == instance
  513. # Proxy model
  514. MyModel(id=1) == MyProxyModel(id=1)
  515. # Multi-table inheritance
  516. MyModel(id=1) != MultitableInherited(id=1)
  517. ``__hash__()``
  518. --------------
  519. .. method:: Model.__hash__()
  520. The ``__hash__()`` method is based on the instance's primary key value. It
  521. is effectively ``hash(obj.pk)``. If the instance doesn't have a primary key
  522. value then a ``TypeError`` will be raised (otherwise the ``__hash__()``
  523. method would return different values before and after the instance is
  524. saved, but changing the :meth:`~object.__hash__` value of an instance is
  525. forbidden in Python.
  526. ``get_absolute_url()``
  527. ----------------------
  528. .. method:: Model.get_absolute_url()
  529. Define a ``get_absolute_url()`` method to tell Django how to calculate the
  530. canonical URL for an object. To callers, this method should appear to return a
  531. string that can be used to refer to the object over HTTP.
  532. For example::
  533. def get_absolute_url(self):
  534. return "/people/%i/" % self.id
  535. While this code is correct and simple, it may not be the most portable way to
  536. to write this kind of method. The :func:`~django.urls.reverse` function is
  537. usually the best approach.
  538. For example::
  539. def get_absolute_url(self):
  540. from django.urls import reverse
  541. return reverse('people.views.details', args=[str(self.id)])
  542. One place Django uses ``get_absolute_url()`` is in the admin app. If an object
  543. defines this method, the object-editing page will have a "View on site" link
  544. that will jump you directly to the object's public view, as given by
  545. ``get_absolute_url()``.
  546. Similarly, a couple of other bits of Django, such as the :doc:`syndication feed
  547. framework </ref/contrib/syndication>`, use ``get_absolute_url()`` when it is
  548. defined. If it makes sense for your model's instances to each have a unique
  549. URL, you should define ``get_absolute_url()``.
  550. .. warning::
  551. You should avoid building the URL from unvalidated user input, in order to
  552. reduce possibilities of link or redirect poisoning::
  553. def get_absolute_url(self):
  554. return '/%s/' % self.name
  555. If ``self.name`` is ``'/example.com'`` this returns ``'//example.com/'``
  556. which, in turn, is a valid schema relative URL but not the expected
  557. ``'/%2Fexample.com/'``.
  558. It's good practice to use ``get_absolute_url()`` in templates, instead of
  559. hard-coding your objects' URLs. For example, this template code is bad:
  560. .. code-block:: html+django
  561. <!-- BAD template code. Avoid! -->
  562. <a href="/people/{{ object.id }}/">{{ object.name }}</a>
  563. This template code is much better:
  564. .. code-block:: html+django
  565. <a href="{{ object.get_absolute_url }}">{{ object.name }}</a>
  566. The logic here is that if you change the URL structure of your objects, even
  567. for something simple such as correcting a spelling error, you don't want to
  568. have to track down every place that the URL might be created. Specify it once,
  569. in ``get_absolute_url()`` and have all your other code call that one place.
  570. .. note::
  571. The string you return from ``get_absolute_url()`` **must** contain only
  572. ASCII characters (required by the URI specification, :rfc:`2396`) and be
  573. URL-encoded, if necessary.
  574. Code and templates calling ``get_absolute_url()`` should be able to use the
  575. result directly without any further processing. You may wish to use the
  576. ``django.utils.encoding.iri_to_uri()`` function to help with this if you
  577. are using strings containing characters outside the ASCII range.
  578. Extra instance methods
  579. ======================
  580. In addition to :meth:`~Model.save()`, :meth:`~Model.delete()`, a model object
  581. might have some of the following methods:
  582. .. method:: Model.get_FOO_display()
  583. For every field that has :attr:`~django.db.models.Field.choices` set, the
  584. object will have a ``get_FOO_display()`` method, where ``FOO`` is the name of
  585. the field. This method returns the "human-readable" value of the field.
  586. For example::
  587. from django.db import models
  588. class Person(models.Model):
  589. SHIRT_SIZES = (
  590. ('S', 'Small'),
  591. ('M', 'Medium'),
  592. ('L', 'Large'),
  593. )
  594. name = models.CharField(max_length=60)
  595. shirt_size = models.CharField(max_length=2, choices=SHIRT_SIZES)
  596. ::
  597. >>> p = Person(name="Fred Flintstone", shirt_size="L")
  598. >>> p.save()
  599. >>> p.shirt_size
  600. 'L'
  601. >>> p.get_shirt_size_display()
  602. 'Large'
  603. .. method:: Model.get_next_by_FOO(\**kwargs)
  604. .. method:: Model.get_previous_by_FOO(\**kwargs)
  605. For every :class:`~django.db.models.DateField` and
  606. :class:`~django.db.models.DateTimeField` that does not have :attr:`null=True
  607. <django.db.models.Field.null>`, the object will have ``get_next_by_FOO()`` and
  608. ``get_previous_by_FOO()`` methods, where ``FOO`` is the name of the field. This
  609. returns the next and previous object with respect to the date field, raising
  610. a :exc:`~django.db.models.Model.DoesNotExist` exception when appropriate.
  611. Both of these methods will perform their queries using the default
  612. manager for the model. If you need to emulate filtering used by a
  613. custom manager, or want to perform one-off custom filtering, both
  614. methods also accept optional keyword arguments, which should be in the
  615. format described in :ref:`Field lookups <field-lookups>`.
  616. Note that in the case of identical date values, these methods will use the
  617. primary key as a tie-breaker. This guarantees that no records are skipped or
  618. duplicated. That also means you cannot use those methods on unsaved objects.
  619. Other attributes
  620. ================
  621. ``DoesNotExist``
  622. ----------------
  623. .. exception:: Model.DoesNotExist
  624. This exception is raised by the ORM in a couple places, for example by
  625. :meth:`QuerySet.get() <django.db.models.query.QuerySet.get>` when an object
  626. is not found for the given query parameters.
  627. Django provides a ``DoesNotExist`` exception as an attribute of each model
  628. class to identify the class of object that could not be found and to allow
  629. you to catch a particular model class with ``try/except``. The exception is
  630. a subclass of :exc:`django.core.exceptions.ObjectDoesNotExist`.