允许用户通过链接下载pdf文件的Crated函数。工作正常,用户保存的唯一问题是.html。所以所有文件都是file.pdf.html。
def download(request,ticket_id):
ticket_path = str(Ticket.objects.get(id=ticket_id).upload)
with open('files/media/' + ticket_path, 'rb') as pdf:
response = HttpResponse(pdf.read())
response['content_type'] = 'application/pdf'
response['Content-Disposition'] = 'attachment;filename="file.pdf"'
return response
为什么?
答案 0 :(得分:0)
您应该将content_type
移至HttpResponse(pdf.read(), content_type='application/pdf')
,它是HttpResponse的attribute