通过Ajax和PHP强制下载

前端之家收集整理的这篇文章主要介绍了通过Ajax和PHP强制下载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个下载脚本,允许强制下载JPG.
这是我的PHP脚本:
  1. <?PHP
  2. header("Pragma: public"); // required
  3. header("Expires: 0");
  4. header("Cache-Control: must-revalidate,post-check=0,pre-check=0");
  5. header("Content-Description: File Transfer");
  6. header("Content-Type: image/jpg");
  7. header('Content-Disposition: attachment; filename="'.basename($GET['a']).'"');
  8. header("Content-Transfer-Encoding: binary");
  9. header("Content-Length: ".filesize(($GET['a']));
  10. readfile(($GET['a']);
  11. ?>

这是我的js代码代码段:

  1. function downloadFile(a){
  2. document.location = "download.PHP?a="+ a;
  3. }

使用此代码示例没有任何反应.如果我将结果附加到HTML标记中,它会显示文件内容.

任何想法如何教浏览器下载此文件

编辑:脚本更新

您无法使用ajax下载文件.所以,如果你有一些应该在ajax上发生的事情,你应该返回url作为响应并应用它像document.location =“url”来开始下载过程.

这里有一点说明.我记得,如果不是通过用户点击启动浏览器,它将阻止文件下载.所以,这将工作正常:

  1. .click(function(){
  2. document.location = "download url"
  3. })

但如果它不是由用户点击启动,它将被阻止.所以,这样的代码

  1. .click(function(){
  2. $.ajax({...,success:function(download_url_from_server){
  3. document.location = download_url_from_server;
  4. }});
  5. })

将被浏览器阻止.因此,如果您想通过帖子传递一些数据,您可以使用< form target =“...”将表单提交到隐藏的iframe或空白页面

  1. function checkToken(token){
  2. var $form = $("#downloadForm");
  3. if ($form.length == 0) {
  4. $form = $("<form>").attr({ "target": "_blank","id": "downloadForm","method": "POST","action": "script.PHP" }).hide();
  5. $("body").append($form);
  6. }
  7. $form.find("input").remove();
  8. var args = { a: "checkToken",b: token }
  9. for (var field in args) {
  10. $form.append($("<input>").attr({"value":args[field],"name":field}));
  11. }
  12. $form.submit();
  13. }

在script.PHP中,如果令牌为Ok,则需要立即执行download.PHP中的代码,或者重定向下载脚本:

  1. header("Location: download.PHP?a=" . $filename)

猜你在找的Ajax相关文章