摘要: 1 from django.http import StreamingHttpResponse#文件流 2 3 4 def big_file_download(request): 5 # do something... 6 7 def file_iterator(file_name, chunk_size=512): 8 with open(... 阅读全文
posted @ 2017-10-13 09:37 莫柔落切 阅读(948) 评论(0) 推荐(0) 编辑