Method for forcing direct download by clicking the image link in Django
This example describes how to force direct download by clicking an image link in Django. Share it with you for your reference. The specific analysis is as follows:
When a user clicks an image connection, the image is directly opened in the browser by default. This code changes the image link to download.
This code is also very suitable for downloading large files and basically does not consume memory. Only a portion of the data is read to the memory each time, and then provides the download function.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Def Download (request ): Def readFile (fn, buf_size = 262144 ): F = open (fn, "rb ") While True: C = f. read (buf_size) If c: Yield c Else: Break F. close () Filename = '/usr/local/1.jpg' Try: Response = HttpResponse (readFile (file), mimetype = 'application/octet-stream ') Response ['content-disposition'] = 'attachment; filename = % s' % 'attachment' Except t: Response = HttpResponse ('') Return response |
I hope this article will help you with Python programming.
Note <>: For more exciting tutorials, please pay attention to the help house programming