1

私はこのソリューション(Djangoで動的に生成されたZIPアーカイブを提供する)に従って、djangoからいくつかのzipファイルを提供しています。

アイデアは、いくつかのチェック ボックスを使用してデータベースからファイルを選択することですが、この例を 2 つの画像だけで機能させようとしています。

import os
import zipfile
import StringIO

from django.http import HttpResponse


def getfiles(request):
    # Files (local path) to put in the .zip
    # FIXME: Change this (get paths from DB etc)
    filenames = ["/home/../image1.png", "/home/../image2.png"]

    # Folder name in ZIP archive which contains the above files
    # E.g [thearchive.zip]/somefiles/file2.txt
    # FIXME: Set this to something better
    zip_subdir = "somefiles"
    zip_filename = "%s.zip" % zip_subdir

    # Open StringIO to grab in-memory ZIP contents
    s = StringIO.StringIO()

    # The zip compressor
    zf = zipfile.ZipFile(s, "w")

    for fpath in filenames:
        # Calculate path for file in zip
        fdir, fname = os.path.split(fpath)
        zip_path = os.path.join(zip_subdir, fname)

        # Add file, at correct path
        zf.write(fpath, zip_path)

    # Must close zip for all contents to be written
    zf.close()

    # Grab ZIP file from in-memory, make response with correct MIME-type
    resp = HttpResponse(s.getvalue(), mimetype = "application/x-zip-compressed")
    # ..and correct content-disposition
    resp['Content-Disposition'] = 'attachment; filename=%s' % zip_filename

    return resp

私は自分のviews.pyにgetfile(request)を書き、インデックスビューから呼び出しを行いました

def index(request):

    if request.method == 'POST':  # If the form has been submitted...
        resp = getfiles(request)
        form = FilterForm(request.POST)  # A form bound to the POST data
        # do some validation and get latest_events from database

    context = {'latest_events_list': latest_events_list, 'form': form}
    return render(request, 'db_interface/index.html', context)

存在しないファイルの名前を入力するとエラーが発生するため、getfile() メソッドが呼び出されることはわかっていますが、ファイル名が正しい場合はダウンロードもエラーも発生しません (フルパス /home/myuser/xxx/ を入力します)。 yyy/Project/app/static/app/image1.png)。

私はdjangoサーバーと本番用に持っているapache2/nginxサーバーで試しました

私も使ってみましたcontent_type = 'application/force-download'

ありがとう

4

0 に答える 0