我发现了大量有些类似的问题而且没有好的答案。我有一个仪表板,用户上传文件,并显示他们上传的文件。我想让他们能够点击图标或文件名并下载。现在它在浏览器中打开文件,对于图像和pdf不是一个问题,因为你可以从那里保存。但是当你有一个docx或二进制文件或zip文件时,你需要一个下载链接,即使对于pdf和图像也是如此。
这是我的观点,忽略已注释掉的部分:
@login_required(login_url='/dashboard-login/')
def dashboard(request):
current_user = request.user
current_client = request.user.client
files = ClientUpload.objects.filter(client=current_client)
if request.method == 'POST':
if request.FILES is None:
return HttpResponseBadRequest('No Files Attached.')
form = UploadFileForm(request.POST, request.FILES)
if form.is_valid():
#dz_files = request.FILES
#for f in dz_files:
# new_file = ClientUpload(client=current_client, file_upload=f)
# new_file.save()
# logger = logging.getLogger(__name__)
# logger.info("File uploaded from " + current_client.company)
newfile = ClientUpload(client=current_client, file_upload=request.FILES.get('file_upload'))
newfile.save()
logger = logging.getLogger(__name__)
logger.info("File uploaded from " + current_client.company)
else:
logger = logging.getLogger(__name__)
logger.warning("Upload Failed")
return HttpResponseRedirect(reverse('dashboard'))
else:
form = UploadFileForm()
data = {'form': form, 'client': current_client, 'files': files}
return render_to_response('dashboard.html', data, context_instance=RequestContext(request))
这是模板,不用担心过滤器,它只是基本名称,并作为文件名的os.path.basename。它不适用于任何问题:
{% load i18n %}
{% load staticfiles %}
{% load sasite_filters %}
<table class="table">
<tr>
<th>{% blocktrans %}Filename{% endblocktrans %}</th>
<th>{% blocktrans %}Size (Bytes){% endblocktrans %}</th>
<th>{% blocktrans %}Upload Time{% endblocktrans %}</th>
<th>{% blocktrans %}Actions{% endblocktrans %}</th>
</tr>
{% for file in files %}
{% with uploaded_file=file.file_upload %}
<tr>
<th><a href="{{ MEDIA_URL }}{{ file.relative_path }}">{{ uploaded_file.name|basename }}</a></th>
<th>{{ uploaded_file.size }}</th>
<th>{{ file.created_at }}</th>
<th><a href="{{ uploaded_file.url }}" id="view-btn"><i class="fa fa-search"></i></a><a href="{% url 'dashboard-delete' upload_id=file.id %}"><i class="fa fa-trash-o"></i></a></th>
{% endwith %}
{% endfor %}
</tr>
</table>
如您所见,我有两个图标,一个删除和一个视图图标。我想制作一个下载图标,或者将文件名称作为下载链接。但是,当我执行<a href="{{ MEDIA_URL }}{{ file.relative_path }}">Download</a>
之类的操作时,它只会在浏览器中打开。
relative_path只是模型上的一个属性我可以使用file_upload.path而没有MEDIA_URL,但它是一样的。
我也尝试将file:///
放在网址前面,它什么也没做,甚至没有在浏览器中打开。
我读到我可以做类似的事情:
response = HttpResponse(mimetype='text/plain')
response['Content-Disposition'] = 'attachment; filename="%s.txt"' % p.filename
response.write(p.body)
来自Django Serving a Download File
但是在一个视图中,我需要以某种方式在模板内部执行此操作,或者在视图中找到一种方法来执行此操作,但我不知道如何执行此操作。我已经考虑过使用process_response
的中间件,但我不知道如何在这种情况下编写它。
我需要通过视图行files = ClientUpload.objects.filter(client=current_client)
获取为该用户显示的所有文件,并找到一种方式将它们作为下载提供,而不是在浏览器中打开URL。
如果有人对这种情况有任何经验,或者知道如何自定义我的模板,查看或添加其他东西来处理这个问题,那么有一个小例子会有很大帮助。
我已经坚持了很长一段时间,似乎无法让它发挥作用。任何建议都将不胜感激。
答案 0 :(得分:4)
<a href="{{ your_file_url}}" download>
你需要什么?
答案 1 :(得分:0)
html_nodes("p") %>% html_text()