mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
[4.1.x] Fixed #33965 -- Improved file-like object example of ImageField in docs.
This uses a valid image. Backport of 838cc0f449f96c157cb44eb91984a2753edc7f42 from main
This commit is contained in:
parent
29fac6b616
commit
27ad94ab3b
@ -257,8 +257,11 @@ Use the ``django.test.Client`` class to make requests.
|
|||||||
For example::
|
For example::
|
||||||
|
|
||||||
>>> from io import BytesIO
|
>>> from io import BytesIO
|
||||||
>>> img = BytesIO(b'mybinarydata')
|
>>> img = BytesIO(
|
||||||
>>> img.name = 'myimage.jpg'
|
... b"GIF89a\x01\x00\x01\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\x00"
|
||||||
|
... b"\x00,\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x01\x00\x00"
|
||||||
|
... )
|
||||||
|
>>> img.name = "myimage.gif"
|
||||||
|
|
||||||
Note that if you wish to use the same file handle for multiple
|
Note that if you wish to use the same file handle for multiple
|
||||||
``post()`` calls then you will need to manually reset the file
|
``post()`` calls then you will need to manually reset the file
|
||||||
|
Loading…
x
Reference in New Issue
Block a user