簡體   English   中英

使用發布請求下載Excel文件

[英]download excel file using post request

我有一個接受JSON並返回excel文件的API端點。 端點直接發送文件,而不是文件的鏈接。 如何使用JQuery AJAX下載文件。

后端代碼:

public function postExcel() {

  // Parse request body
  $reqBody = json_decode(file_get_contents('php://input'));

  // On Valid Request
  if(isset($reqBody, $reqBody->regno, $reqBody->offset) && $reqBody->offset < 100 && $reqBody->offset >= 0) {
    // Create and add metadata to the workbook
    $workbook = new \PHPExcel();
    $workbook->getProperties()
             ->setCreator('AUScraper')
             ->setTitle('AU Results')
             ->setLastModifiedBy('AUScraper')
             ->setDescription('generated by AUScraper')
             ->setSubject('generated by AUScraper')
             ->setKeywords('anna university unofficial semester result API')
             ->setCategory('semester results');

    $worksheet = $workbook->getSheet(0);
    $worksheet->setTitle('results');

    // Get the results
    $results = $this->requestAU($reqBody->regno, $reqBody->offset);

    // Update worksheet



    //Output the file
    ob_clean();
    header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
    header("Content-Disposition: attachment; filename=\"results.xlsx\"");
    header("Cache-Control: max-age=0");
    header("Expires: 0");

    $workbookWriter = new \PHPExcel_Writer_Excel2007($workbook);
    $workbookWriter->save("php://output");
  }

  // On Invalid Request
  header('Content-Type: application/json');
  http_response_code(400);
  return json_encode(['error' => 'invalid request']);
}

前端代碼:

import $ from 'jquery';
import 'materialize';

 $(() => {
    $('#reg_form').submit(() => {

  // format data to send
  let form_data = {};
  form_data.regno = $('#reg_no').val();
  form_data.offset = $('#offset').val();

  // Send the request
  $.ajax({
    url: 'http://localhost/git_repo/AUScraper/app/public/api/excel',
    data: JSON.stringify(form_data),
    type: 'POST',
    contentType: 'application/json',
    success: function(data) {
          var blob=new Blob([data], {type : 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
          var link=document.createElement('a');
          link.href=window.URL.createObjectURL(blob);
          link.download="result_"+new Date()+".xlsx";
          link.click();
        },
    error: (xhr,status,error) => {
      let errorMessage = JSON.parse(xhr.responseText);
      Materialize.toast(errorMessage.error, 2000);
    }
  });

    return false;
  });
});

我不想事先將文件保存在服務器中,而只是下載它。 提前致謝。

上面問題中的問題是,我能夠下載文件,但文件已損壞。 我通過將xhr的responseType設置為blob來修復它。

新的AJAX代碼供參考:

let xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost/git_repo/AUScraper/app/public/api/excel');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.responseType = 'blob';

xhr.onload = function(e) {
  if (this.status == 200) {
    let link=document.createElement('a');
    link.href=window.URL.createObjectURL(this.response);
    link.download="results.xlsx";
    link.click();
  }
  else {
    Materialize.toast('Invalid data!', 2000);
  }
}

xhr.send(form_data);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM