這篇文章主要介紹了詳解django三種檔案下載方式,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
一、概述
在實際的專案中很多時候都需要用到下載功能,如導excel、pdf或檔案下載,當然你可以使用web服務自行建立可以用於下載的資源伺服器,如nginx,這裡我們主要介紹django中的檔案下載。
實作方式:a標籤+回應頭資訊(當然你可以選擇form實作)
<p class="col-md-4"><a href="{% url 'download' %}" rel="external nofollow" >点我下载</a></p>
方式一:使用HttpResponse
路由url:
url(r'^download/',views.download,name="download"),
#views.py代碼
##
from django.shortcuts import HttpResponse def download(request): file = open('crm/models.py', 'rb') response = HttpResponse(file) response['Content-Type'] = 'application/octet-stream' #设置头信息,告诉浏览器这是个文件 response['Content-Disposition'] = 'attachment;filename="models.py"' return response
方式二:使用StreamingHttpResponse
from django.http import StreamingHttpResponse def download(request): file=open('crm/models.py','rb') response =StreamingHttpResponse(file) response['Content-Type']='application/octet-stream' response['Content-Disposition']='attachment;filename="models.py"' return response方式三:使用FileResponse
from django.http import FileResponse def download(request): file=open('crm/models.py','rb') response =FileResponse(file) response['Content-Type']='application/octet-stream' response['Content-Disposition']='attachment;filename="models.py"' return response##使用總結
三種http回應物件在django官網都有介紹.入口:https://docs.djangoproject.com/en/1.11/ref/request-response/
#
以上是詳解django三種檔案下載方式_python的詳細內容。更多資訊請關注PHP中文網其他相關文章!