我正在django中处理views.py
文件中的某些数据,并想在success.html
之后重定向到return response
页面。
我试图将多个函数(使用pandas处理数据框)放在一个函数中,然后调用main函数,但是由于某种原因,这样做时我在嵌套函数中遇到了(pandas)错误。
def download_attachment():
file_path = 'media/payroll.xlsx'
response = HttpResponse(open(file_path, 'rb').read())
response['Content-Type'] = 'mimetype/submimetype'
response['Content-Disposition'] = 'attachment; filename=payroll.xlsx'
return response
这是下载文件的功能。在此功能之后,我想重定向 而不需要实现Javascript。