使用Ajax请求下载文件当我点击一个按钮时,我想发送一个“Ajax下载请求”,所以我尝试这样做:JavaScript:var xhr = new XMLHttpRequest();xhr.open("GET", "download.php");xhr.send();php:<?header("Cache-Control: public");header("Content-Description: File Transfer");header("Content-Disposition: attachment;
filename= file.txt");header("Content-Transfer-Encoding: binary"); readfile("file.txt");?>但不能像预期的那样工作,我该怎么办?提前谢谢
3 回答
千巷猫影
TA贡献1829条经验 获得超7个赞
window.location
window.location
download
window.location
.
原始答案
$.ajax({ url: 'download.php', type: 'POST', success: function() { window.location = 'download.php'; }});
window.location
四季花海
TA贡献1811条经验 获得超5个赞
window.location = 'download.php';
添加回答
举报
0/150
提交
取消