mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-25 00:34:21 +03:00
parent
8fbf8c3fa3
commit
373195996e
|
@ -725,7 +725,7 @@ to the desired output.
|
||||||
>>> instance = DataPoint(label='Example', x_coordinate=1, y_coordinate=2)
|
>>> instance = DataPoint(label='Example', x_coordinate=1, y_coordinate=2)
|
||||||
>>> out_serializer = DataPointSerializer(instance)
|
>>> out_serializer = DataPointSerializer(instance)
|
||||||
>>> out_serializer.data
|
>>> out_serializer.data
|
||||||
ReturnDict([('label', 'testing'), ('coordinates', {'x': 1, 'y': 2})])
|
ReturnDict([('label', 'Example'), ('coordinates', {'x': 1, 'y': 2})])
|
||||||
|
|
||||||
* Unless our field is to be read-only, `to_internal_value` must map back to a dict
|
* Unless our field is to be read-only, `to_internal_value` must map back to a dict
|
||||||
suitable for updating our target object. With `source='*'`, the return from
|
suitable for updating our target object. With `source='*'`, the return from
|
||||||
|
|
Loading…
Reference in New Issue
Block a user