我允许用户上传带有块的图像。在不使用 FileField 重新保存文件的情况下从数据库中引用文件的适当方法是什么?我保存如下:
def handle_uploaded_file(f):
with open('some/file/name.txt', 'wb+') as destination:
for chunk in f.chunks():
destination.write(chunk)
我允许用户上传带有块的图像。在不使用 FileField 重新保存文件的情况下从数据库中引用文件的适当方法是什么?我保存如下:
def handle_uploaded_file(f):
with open('some/file/name.txt', 'wb+') as destination:
for chunk in f.chunks():
destination.write(chunk)