久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

詳解Django關于StreamingHttpResponse與FileResponse文件下載的最優方法

瀏覽:204日期:2024-09-14 14:07:16
1 StreamingHttpResponse下載

StreamingHttpResponse(streaming_content):流式相應,內容的迭代器形式,以內容流的方式響應。

注:StreamingHttpResponse一般多現實在頁面上,不提供下載。

以下為示例代碼

def streamDownload(resquest): def file_iterator(filepath, chunk_size = 512): with open(filepath, ’rb’) as f: while True: con = f.read(512) if con: yield con else: break filename = os.path.abspath(__file__) + ’test.txt’ response = StreamingHttpResponse(file_iterator(filename) return response # 最后程序會將結果打印在顯示器上2 FileResponse下載

FileResponse(stream):以流形式打開后的文件

注:FileResponse是StreamingHttpResponse的子類

以下為示例代碼:

def homeproc2(request): cwd = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) response = FileResponse(open(cwd + '/msgapp/templates/youfile', 'rb')) response[’Content-Type] = ’application/octet-stream’ response[’Content-Disposition’] = ’attachment;filename='filename'’ return response

需要解釋說明的是:

response[’Content-Type] = ’application/octet-stream’ response[’COntent-Disposition’] = ’attachment;filename='filename'’ Content-Type:用于指定文件類型。 COntent-Disposition:用于指定下載文件的默認名稱,對,沒錯! “CO”兩個字符都要大寫。

兩者都是MIME協議里面的標準類型。

到此這篇關于詳解Django關于StreamingHttpResponse與FileResponse文件下載的最優方法的文章就介紹到這了,更多相關Django StreamingHttpResponse與FileResponse內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Django
相關文章:
主站蜘蛛池模板: 惠水县| 堆龙德庆县| 虹口区| 福建省| 吉隆县| 区。| 靖西县| 新兴县| 诏安县| 吴江市| 临颍县| 扎赉特旗| 海兴县| 班戈县| 洪泽县| 崇左市| 秦皇岛市| 玛多县| 苏尼特左旗| 宽甸| 鹰潭市| 横山县| 深州市| 苍山县| 怀集县| 凤山县| 巫溪县| 平果县| 钟山县| 余姚市| 滁州市| 芜湖县| 自治县| 施甸县| 衡东县| 肇州县| 丘北县| 明溪县| 巫山县| 福建省| 册亨县|