我有一个extjs ajax函数,它将一个表单发送到服务器,该表单返回一个文件,用正确的标题下载。可以使用浏览器的普通文件下载窗口下载该文件。但是,不会触发ajax请求的成功回调函数,并且ajax将无限期地等待响应。
有没有办法告诉ajax函数该文件是否从服务器正确发送?
exportLayer = function(node_id){
Ext.Ajax.request({
method: "GET",
form: "exportForm",
url: "/basqui/layer/shapefile/export/" + node_id + "/",
success: function(r){
html = Ext.decode(r.responseText).html
Ext.get('pageContent').update(html);
},
});
}
服务器端:
temp = tempfile.TemporaryFile()
zip = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)
shapefileBase = os.path.splitext(dstFile)[0]
shapefileName = os.path.splitext(layer.filename)[0]
for fName in os.listdir(dstDir):
zip.write(os.path.join(dstDir, fName), fName)
zip.close()
#delete temporary files
shutil.rmtree(dstDir)
#return the zip to user
f = FileWrapper(temp)
response = StreamingHttpResponse(f, content_type="application/zip")
response['Content-Disposition'] = "attachment; filename=" + shapefileName + fileExt_dic[format]
response['Content-Length'] = temp.tell()
temp.seek(0)
return response
答案 0 :(得分:1)
您无法使用Jquery Ajax下载。响应将不会到达浏览器。我曾经遇到过这个问题,并通过执行以下操作解决了这个问题:
$(".dwnBtn").click(function(){
let url = "{% url 'the url'%}"
$.post(url, function(data)
{
console.log(data);
location.replace(url);
});
}) 这将使浏览器重新加载,然后下载文件。