有没有什么方法可以使用 FileField 在 Django 中传输大文件..因为每次我使用简单的上传处理程序时,由于产生巨大的流量而发生连接超时错误。我正在考虑使用 FTP,但不知道如何实现。有什么建议么???
上传处理程序方法如下所示:
def handle_uploaded_file(file_abs_path,f):
destination = open(file_abs_path, 'wb+')
for chunk in f.chunks():
destination.write(chunk)
destination.close()