Commit ece79734 by Silvio J. Gutierrez

Updated comment.

parent f7646627
...@@ -800,7 +800,8 @@ Here's an example of how you might choose to implement multiple updates: ...@@ -800,7 +800,8 @@ Here's an example of how you might choose to implement multiple updates:
return ret return ret
class BookSerializer(serializers.Serializer): class BookSerializer(serializers.Serializer):
# You must explicitly mark the primary key as editable. # We need to identify elements in the list using their primary key,
# so use a writable field here, rather than the default which would be read-only.
id = serializers.IntegerField() id = serializers.IntegerField()
... ...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment