Я новичок в django и python. Нужны советы в этом квесте.
Случай: когда пользователь нажимает кнопку «Отправить» в форме, он должен отобразить страницу «Успех» и ссылку, по которой он может загрузить результаты. Результаты в файле Excel. Я могу создать вывод в файл Excel с помощью модуля xlwt и отображать страницу успеха по отдельности, но не одновременно в обоих случаях.
Что у меня есть:
Я использую django1.1.1 на Windows XP с Python 2.6. Был задан похожий вопрос
но не смог заставить его работать.
страница моего успеха. Html имеет эту строку
<a href="../static/example.xls">Download CSV File</a>
urls.py:
url(r'^static/(?P<path>.*)$', send_file),
views.py:
def send_file(request):
import os, tempfile, zipfile
from django.core.servers.basehttp import FileWrapper
"""
Send a file through Django without loading the whole file into
memory at once. The FileWrapper will turn the file object into an
iterator for chunks of 8KB.
"""
filename = "C:/example.xls" # Select your file here.
wrapper = FileWrapper(file(filename),"rb")
response = HttpResponse(wrapper, content_type='text/plain')
#response['Content-Length'] = os.path.getsize(filename)
return response
Когда я нажимаю на ссылку, она выдает ошибку пути
send_file() got an unexpected keyword argument 'path'
Request Method: GET
Request URL: localhost:8000/webinput/static/example.xls
Exception Type: TypeError
Exception Value:
send_file() got an unexpected keyword argument 'path'
Кстати, example.xls находится как в папке C: /example.xls, так и в статической папке
Состав:
- WebDB
- Статический
- Webinput
- urls.py
- views.py
- models.py
У меня также есть эти 2 модуля. Если я использую backup_to_csv, он работает нормально, но загружается напрямую без ссылки. Как сделать то же самое, когда у меня уже есть файл. Если есть другие способы, где мне не нужно хранить файл, это тоже хорошо.
def xls_to_response (xls, fname):
response = HttpResponse(mimetype="application/ms-excel")
response['Content-Disposition'] = 'attachment; filename=%s' % fname
xls.save(response)
return response
def backup_to_csv (запрос, строка):
response = HttpResponse(mimetype='text/csv')
response['Content-Disposition'] = 'attachment; filename="backup.csv"'
writer = csv.writer(response, dialect='excel')
#code for writing csv file go here...
for i in row:
writer.writerow(i)
return response