0

有没有什么方法可以使用 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()
4

1 回答 1

0

django-storages包括一个 FTP 和 SFTP 存储后端。绝对值得一看,但也要寻找任何相关的未解决问题。

于 2012-06-27T14:39:36.317 回答