我在尝试创建下载链接时遇到问题,该链接将 (1) 原位生成 CSV 文件和 (2) 自动开始下载而不被重定向到另一个页面(即 AJAX 请求)。
发生的情况如下:我没有看到任何 JavaScript 错误,并且处理程序 CSVDownload 也可以毫无问题地执行。但是,下载永远不会开始。出于某种原因,如果我只是输入 URL (..website../csvdownload),那么它会使用相同的处理程序创建文件。知道为什么会这样吗?
任何帮助将不胜感激!
HTML
<button id="mainReportDownload" type="button">
Download Report
</button>
AJAX 请求
$('#mainReportDownload').on('click', function() {
$.ajax({
type: 'GET',
url: "/csvdownload",
beforeSend: function() {
notification('Creating report..','info',false)
}
});
});
Python
def List2CSV(data):
csv = ""
for row in data:
for item in row:
csv = csv + item + ','
csv = csv[:-1] + '\n'
csv = csv[:-1]
return csv
class CSVDownload(webapp2.RequestHandler):
def get(self):
conn = rdbms.connect(instance=_INSTANCE_NAME, database='test')
cursor = conn.cursor()
cursor.execute('SELECT email FROM Test LIMIT 100')
testvalues = [[item for item in row] for row in cursor.fetchall()]
csv = List2CSV(testvalues)
self.response.headers['Content-Type'] = 'text/csv'
self.response.headers['Content-Disposition'] = 'attachment; filename=report.csv'
self.response.out.write(csv)
conn.close()