diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-08-11 21:05:52 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2016-08-25 21:42:42 +0200 |
| commit | 13c3e5d5a05e9c358d212d154addd703cac3bc66 (patch) | |
| tree | b718eb13592843cc6bfd1e6a56fabf23108bd191 /docs | |
| parent | 989f6108d349e0eebdc5ad26b5cb4e882cb32e47 (diff) | |
Fixed #25995 -- Added an encoder option to JSONField
Thanks Berker Peksag and Tim Graham for the reviews.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/fields.txt | 27 | ||||
| -rw-r--r-- | docs/releases/1.11.txt | 4 |
2 files changed, 25 insertions, 6 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index fdb69a7370..3d22b13577 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -458,17 +458,32 @@ using in conjunction with lookups on ``JSONField`` ============= -.. class:: JSONField(**options) +.. class:: JSONField(encoder=None, **options) A field for storing JSON encoded data. In Python the data is represented in its Python native format: dictionaries, lists, strings, numbers, booleans and ``None``. - If you want to store other data types, you'll need to serialize them first. - For example, you might cast a ``datetime`` to a string. You might also want - to convert the string back to a ``datetime`` when you retrieve the data - from the database. There are some third-party ``JSONField`` implementations - which do this sort of thing automatically. + .. attribute:: encoder + + .. versionadded:: 1.11 + + An optional JSON-encoding class to serialize data types not supported + by the standard JSON serializer (``datetime``, ``uuid``, etc.). For + example, you can use the + :class:`~django.core.serializers.json.DjangoJSONEncoder` class or any + other :py:class:`json.JSONEncoder` subclass. + + When the value is retrieved from the database, it will be in the format + chosen by the custom encoder (most often a string), so you'll need to + take extra steps to convert the value back to the initial data type + (:meth:`Model.from_db() <django.db.models.Model.from_db>` and + :meth:`Field.from_db_value() <django.db.models.Field.from_db_value>` + are two possible hooks for that purpose). Your deserialization may need + to account for the fact that you can't be certain of the input type. + For example, you run the risk of returning a ``datetime`` that was + actually a string that just happened to be in the same format chosen + for ``datetime``\s. If you give the field a :attr:`~django.db.models.Field.default`, ensure it's a callable such as ``dict`` (for an empty default) or a callable that diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index f50b000016..7d9af8d132 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -129,6 +129,10 @@ Minor features * The new :class:`~django.contrib.postgres.indexes.GinIndex` class allows creating gin indexes in the database. +* :class:`~django.contrib.postgres.fields.JSONField` accepts a new ``encoder`` + parameter to specify a custom class to encode data types not supported by the + standard encoder. + :mod:`django.contrib.redirects` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
