2

これは、.docx ファイルを含む zip ファイルをダウンロードするための私のコードです。

def reportsdlserien(request):
    selected_sem = request.POST.get("semester","SS 2016")

    docx_title="Report_in_%s.docx" % selected_sem.replace(' ','_')

    document = Document()
    f = io.BytesIO()

    zip_title="Archive_in_%s.zip" % selected_sem.replace(' ','_')
    zip_arch = ZipFile( f, 'a' )

    document.add_heading("Report in "+selected_sem, 0)
    document.add_paragraph(date.today().strftime('%d %B %Y'))

    document.save(docx_title)
    zip_arch.write(docx_title)
    zip_arch.close()
    response = HttpResponse(
        f.getvalue(),
        content_type='application/zip'
    )
    response['Content-Disposition'] = 'attachment; filename=' + zip_title
    return response

唯一の問題は、必要のない .docx ファイルも作成されることです。docx ファイルにも BytesIO を使用したかったのですが、アーカイブに追加できず、コマンドzip_arch.write(BytesIOdocxfile)が機能しません。これを行う別のコマンドはありますか?ありがとうございました!

4

1 に答える 1

2

関数を使用しwritestr()て、アーカイブにいくつかのバイトを追加します。

data = StringIO()
document.save(data)  # Or however the library requires you to do this.
zip_arch.writestr(docx_title, bytes(data.getvalue()))

私はこれを StringIO でのみ実行しましたが、BytesIO がうまく機能しない理由がわかりません。

于 2014-10-25T04:14:53.930 に答える