Handle file download from ajax post

前端 未结 20 2595
心在旅途
心在旅途 2020-11-21 05:46

I have a javascript app that sends ajax POST requests to a certain URL. Response might be a JSON string or it might be a file (as an attachment). I can easily detect Content

相关标签:
20条回答
  • 2020-11-21 06:17

    see: http://www.henryalgus.com/reading-binary-files-using-jquery-ajax/ it'll return a blob as a response, which can then be put into filesaver

    0 讨论(0)
  • 2020-11-21 06:18

    I used this FileSaver.js. In my case with csv files, i did this (in coffescript):

      $.ajax
        url: "url-to-server"
        data: "data-to-send"
        success: (csvData)->
          blob = new Blob([csvData], { type: 'text/csv' })
          saveAs(blob, "filename.csv")
    

    I think for most complicated case, the data must be processed properly. Under the hood FileSaver.js implement the same approach of the answer of Jonathan Amend.

    0 讨论(0)
  • 2020-11-21 06:19

    To get Jonathan Amends answer to work in Edge I made the following changes:

    var blob = typeof File === 'function'
        ? new File([this.response], filename, { type: type })
        : new Blob([this.response], { type: type });
    

    to this

    var f = typeof File+"";
    var blob = f === 'function' && Modernizr.fileapi
        ? new File([this.response], filename, { type: type })
        : new Blob([this.response], { type: type });
    

    I would rather have posted this as a comment but I don't have enough reputation for that

    0 讨论(0)
  • 2020-11-21 06:20

    What server-side language are you using? In my app I can easily download a file from an AJAX call by setting the correct headers in PHP's response:

    Setting headers server-side

    header("HTTP/1.1 200 OK");
    header("Pragma: public");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    
    // The optional second 'replace' parameter indicates whether the header
    // should replace a previous similar header, or add a second header of
    // the same type. By default it will replace, but if you pass in FALSE
    // as the second argument you can force multiple headers of the same type.
    header("Cache-Control: private", false);
    
    header("Content-type: " . $mimeType);
    
    // $strFileName is, of course, the filename of the file being downloaded. 
    // This won't have to be the same name as the actual file.
    header("Content-Disposition: attachment; filename=\"{$strFileName}\""); 
    
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: " . mb_strlen($strFile));
    
    // $strFile is a binary representation of the file that is being downloaded.
    echo $strFile;
    

    This will in fact 'redirect' the browser to this download page, but as @ahren alread said in his comment, it won't navigate away from the current page.

    It's all about setting the correct headers so I'm sure you'll find a suitable solution for the server-side language you're using if it's not PHP.

    Handling the response client side

    Assuming you already know how to make an AJAX call, on the client side you execute an AJAX request to the server. The server then generates a link from where this file can be downloaded, e.g. the 'forward' URL where you want to point to. For example, the server responds with:

    {
        status: 1, // ok
        // unique one-time download token, not required of course
        message: 'http://yourwebsite.com/getdownload/ska08912dsa'
    }
    

    When processing the response, you inject an iframe in your body and set the iframe's SRC to the URL you just received like this (using jQuery for the ease of this example):

    $("body").append("<iframe src='" + data.message +
      "' style='display: none;' ></iframe>");
    

    If you've set the correct headers as shown above, the iframe will force a download dialog without navigating the browser away from the current page.

    Note

    Extra addition in relation to your question; I think it's best to always return JSON when requesting stuff with AJAX technology. After you've received the JSON response, you can then decide client-side what to do with it. Maybe, for example, later on you want the user to click a download link to the URL instead of forcing the download directly, in your current setup you would have to update both client and server-side to do so.

    0 讨论(0)
  • 2020-11-21 06:20

    As others have stated, you can create and submit a form to download via a POST request. However, you don't have to do this manually.

    One really simple library for doing exactly this is jquery.redirect. It provides an API similar to the standard jQuery.post method:

    $.redirect(url, [values, [method, [target]]])
    
    0 讨论(0)
  • 2020-11-21 06:21

    For those looking for a solution from an Angular perspective, this worked for me:

    $http.post(
      'url',
      {},
      {responseType: 'arraybuffer'}
    ).then(function (response) {
      var headers = response.headers();
      var blob = new Blob([response.data],{type:headers['content-type']});
      var link = document.createElement('a');
      link.href = window.URL.createObjectURL(blob);
      link.download = "Filename";
      link.click();
    });
    
    0 讨论(0)
提交回复
热议问题