mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-16 19:41:06 +03:00
Unsaved file objects may not have an associated URL.
This commit is contained in:
parent
9b8f966e06
commit
321133242f
|
@ -1198,8 +1198,12 @@ class FileField(Field):
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def to_representation(self, value):
|
def to_representation(self, value):
|
||||||
|
if not value:
|
||||||
|
return None
|
||||||
|
|
||||||
if self.use_url:
|
if self.use_url:
|
||||||
if not value:
|
if not getattr(value, 'url', None):
|
||||||
|
# If the file has not been saved it may not have a URL.
|
||||||
return None
|
return None
|
||||||
url = value.url
|
url = value.url
|
||||||
request = self.context.get('request', None)
|
request = self.context.get('request', None)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user