返回语句后需要Javascript重定向到成功页面吗?

时间:2019-05-18 22:04:11

标签: javascript python django

我正在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。

0 个答案:

没有答案