ユーザーがチャンクで画像をアップロードできるようにしています。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)