mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-28 08:59:54 +03:00
Fix NotImplementedError for Field.to_internal_value and Field.to_representation
This commit is contained in:
parent
3aa1089a6a
commit
d8c3a3bcf2
|
@ -572,8 +572,11 @@ class Field:
|
|||
Transform the *incoming* primitive data into a native value.
|
||||
"""
|
||||
raise NotImplementedError(
|
||||
'{cls}.to_internal_value() must be implemented.'.format(
|
||||
cls=self.__class__.__name__
|
||||
'{cls}.to_internal_value() must be implemented for field '
|
||||
'{field_name}. If you do not need to support write operations '
|
||||
'you probably want to subclass `ReadOnlyField` instead.'.format(
|
||||
cls=self.__class__.__name__,
|
||||
field_name=self.field_name,
|
||||
)
|
||||
)
|
||||
|
||||
|
@ -582,9 +585,7 @@ class Field:
|
|||
Transform the *outgoing* native value into primitive data.
|
||||
"""
|
||||
raise NotImplementedError(
|
||||
'{cls}.to_representation() must be implemented for field '
|
||||
'{field_name}. If you do not need to support write operations '
|
||||
'you probably want to subclass `ReadOnlyField` instead.'.format(
|
||||
'{cls}.to_representation() must be implemented for field {field_name}.'.format(
|
||||
cls=self.__class__.__name__,
|
||||
field_name=self.field_name,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user