2

プロジェクトのメディアなどのフォルダーにすべての画像を保存しており、それぞれの画像をダウンロードする必要がある html テンプレートにボタンがあります。

以下は私のコードです

ビュー.py

@login_required
def download_image(request, product_id):
    import os
    # current_site = get_current_site(request)
    product_image =  Product.objects.get(id=product_id)
    product_image_url = product_image.image_code_url()
    print product_image_url, ">>>>>>>>>>>>>>>"
    response = HttpResponse(mimetype='application/force-download')
    response['X-Sendfile'] = smart_str(product_image_url)
    response['Content-Length'] = os.stat(product_image_url).st_size

    return response  

template.html

<input type=button><a href="{% url 'download_image' product_id%}"></a>/>

結果:

/media/productb7ab/product792f2764314f40b8bd3b3d58290765cc/codes/Image_1.png  >>>>>>>>>>>>>>>
ERROR 2013-10-25 18:46:21,192 (base) (7258, -1248855232): Internal Server Error: /download/code/88/
Traceback (most recent call last):
  .......
  .......
  OSError: [Errno 2] No such file or directory: '/media/productb7ab/product792f2764314f40b8bd3b3d58290765cc/codes/Image_1.png'

しかし、のようなURLlocalhost:8000/media/productb7ab/product792f2764314f40b8bd3b3d58290765cc/codes/Image_1.pngを押すと、画像を見ることができます。

最後に、django のファイルシステムからイメージをダウンロードする方法は?

上記のコードで何が間違っていますか?

編集

によって共有された提案されたリンクを読んだ後Brandon

上記の方法を以下のコードに変更しましたが、直面している同じエラーが引き続き発生します

from django.core.servers.basehttp import FileWrapper

@login_required
def downloadimage(request, product_id):
    import os
    # current_site = get_current_site(request)
    image_code =  Product.objects.get(object_id=product_id)
    image_code_url = image_code.image_code_url()
    print image_code_url,">>>>>>>>>>>>>>"
    wrapper = FileWrapper(file(image_code_url))
    response = HttpResponse(wrapper, content_type='text/plain')
    response['Content-Disposition'] = 'attachment; filename=%s' % os.path.basename(image_code_url)
    response['Content-Length'] = os.path.getsize(image_code_url)
    return response

エラー

Error:IOError at /download/code/88/
[Errno 2] No such file or directory: '/media/productrbab/product792f2764314f40b8bd3b3d58290765cc/codes/Image_1.png'
Request Method: GET
Request URL:    http://localhost:8000/download/qrcode/88/
Django Version: 1.5.4
Exception Type: IOError
Exception Value:    
[Errno 2] No such file or directory: '/media/productrbab/product792f2764314f40b8bd3b3d58290765cc/codes/Image_1.png'
4

1 に答える 1

1

前のビューで URL を設定しないのはなぜですか。

image_url = Product.objects.get(...).image_code_url()

次に、テンプレートに通常のリンクを配置します。

<a href="{{ image_url }}">Download</a>

注: 大規模なシステムで Django を介してファイルを提供すると、効率が低下します。単純な HTTP サーバー (Apache または Nginx) を介して提供することをお勧めします。メディア管理の詳細については、django docsを参照してください。

于 2013-10-25T19:45:42.953 に答える