aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/fields.md
diff options
context:
space:
mode:
authorTom Christie2013-06-02 20:12:49 +0100
committerTom Christie2013-06-02 20:12:49 +0100
commitb15a6ccef2e13ab3310dbe856a945bba56e21c63 (patch)
treeeedeffadf8f6fa48d339940e8bba64e33b33db7d /docs/api-guide/fields.md
parent01e80ff9f77c075a01fc84c93f511a8b16ab3045 (diff)
downloaddjango-rest-framework-b15a6ccef2e13ab3310dbe856a945bba56e21c63.tar.bz2
Serializer field 'default' argument may be a callable
Diffstat (limited to 'docs/api-guide/fields.md')
-rw-r--r--docs/api-guide/fields.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md
index 9820cb40..c7db32ed 100644
--- a/docs/api-guide/fields.md
+++ b/docs/api-guide/fields.md
@@ -41,7 +41,9 @@ Defaults to `True`.
### `default`
-If set, this gives the default value that will be used for the field if none is supplied. If not set the default behavior is to not populate the attribute at all.
+If set, this gives the default value that will be used for the field if none is supplied. If not set the default behavior is to not populate the attribute at all.
+
+May be set to a function or other callable, in which case the value will be evaluated each time it is used.
### `validators`