0

我正在使用 django 设计两个基本页面,其中一个页面用于将文件上传到媒体,另一个页面列出了媒体文件夹中所有上传的文件以及下载这些文件的链接。以下是我的代码,

网址.py

from django.conf.urls.defaults import *
from django.conf import settings

urlpatterns = patterns('',
             url(r'^files$', 'learn_django.views.upload_file'),
             url(r'^list_of_files$', 'learn_django.views.files_list'),
             url(r'^download$', 'learn_django.views.download'),
)
if settings.DEBUG:
    urlpatterns = patterns('',
    url(r'^media/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
) + urlpatterns

视图.py

from django.conf import settings
from django.shortcuts import render_to_response
from learn_django.forms import UploadFileForm
import os

def upload_file(request):
    if request.method == 'POST':
        form = UploadFileForm(request.POST, request.FILES)
        if form.is_valid() and form.is_multipart():
            handle_uploaded_file(request.FILES['file'])
            return HttpResponseRedirect('/files_list')
    else:
        form = UploadFileForm()
    return render_to_response('files_form.html', {'form': form},context_instance=RequestContext(request))

def handle_uploaded_file(file,path=''):
    filename = file._get_name()
    destination_file = open('%s/%s' % (settings.MEDIA_ROOT, str(path) + str(filename)), 'wb+')
    for chunk in file.chunks():
        destination_file.write(chunk)
    destination_file.close()

def files_list(request):
    return render_to_response('files_list.html',{'total_files':os.listdir(settings.MEDIA_ROOT),'path':settings.MEDIA_ROOT},context_instance=RequestContext(request))

def download(request):
    #do something to downlaod the files here.....
    return something

文件列表.html

<table border="1" colspan="2" width="100%">
   <tr>
     <th width="60%">File</td>
     <th width="40%">Download</td> 
   </tr>
 {% for file in total_files %}
   <tr>
     <td width="60%">{{file}}</td>
     <td width="40%" align="center"><a href="/download" style="text-decoration:None">Download here</a></td> 
   </tr>
 {% endfor %}  
</table>

files所以在上面的代码中,当我们在url访问主页时,file_form.html页面将显示一个包含带有上传选项的文件的表单,所以当我们上传文件时,它上传成功并重定向到files_list.html显示上传列表的页面媒体目录中的文件以及用于下载该特定文件的 URL。

最后我的意图是当我们点击每个文件旁边的链接时以表格的形式下载上传的文件,如files_list.html页面所示。

当我们点击链接时,我在谷歌上搜索了很多关于下载特定上传文件的信息,但找不到它,所以就这么接近了。

files_list.html任何人都可以让我知道如何通过使用页面中显示的锚标签概念来实现从媒体下载文件

如果有人download用下载该特定文件的代码填充我的视图函数会更有帮助,这样我实际上可以非常快速地学习它......

已编辑

编辑后我更新了我的代码如下

网址.py

将以下行添加到 url conf

     url(r'^download/(?P<file_name>.+)$', 'learn_django.views.download'),

编辑下载的视图功能如下

def download(request,file_name):
    response = HttpResponse(mimetype='application/force-download')
    response['Content-Disposition'] = 'attachment; filename=%s' % smart_str(file_name)
    response['X-Sendfile'] = smart_str(settings.MEDIA_ROOT + file_name)
    return response

html文件中的锚标记如下

<td width="40%" align="center"><a href="/download/{{file}}" style="text-decoration:None">Download here</a></td>

所以当我点击download链接时,它显示以下错误

Request Method: GET
Request URL:    http://localhost:8000/download
Django Version: 1.4.3
Exception Type: error
Exception Value:    
unbalanced parenthesis
Exception Location: /usr/lib64/python2.7/re.py in _compile, line 245
Python Executable:  /usr/bin/python
4

1 回答 1

0
url(r'^download/$', 'learn_django.views.download'),

<a href="/download/?file_name={{file}}">Download</a>

def download(request):
    file_name = request.GET.get('per_page')
    path_to_file = "/media/{0}".format(file_name)
    response = HttpResponse(mimetype='application/force-download')
    response['Content-Disposition'] = 'attachment; filename=%s' % smart_str(file_name)
    response['X-Sendfile'] = smart_str(path_to_file)
    return response
于 2013-03-06T08:34:12.157 回答