1StreamingHttpResponse下载StreamingHttpResponse(streaming_content):流式相应,内容的迭代器形式,以内容流的方式响应。注:StreamingHttpResponse一般多现实在页面上,不提供下载。以下为示例代码defstreamDownload(resquest):deffile_iterator(filepath,chunk_size=512):withopen(filepath,'rb')asf:whileTrue:con=f.read(512)ifcon:yieldconelse:breakfilename=os.path.abspath(__file__...
继续阅读 >