前端vue項目-關於下載文件pdf/excel(三)

最近在作一些需求,須要下載一些文件信息,最頻繁的就是下載excel文件到本地了html

看過了不少方法,作個整理吧哈哈哈哈前端

參考的文章連接:vue

http://www.javashuo.com/article/p-fqaglzgi-dk.htmlweb

https://www.jianshu.com/p/56680ce1cc97ajax

http://www.javashuo.com/article/p-nqcvcvop-dt.htmlnpm

http://www.javashuo.com/article/p-hrpodlts-ea.htmljson

 

1、 將頁面中的html信息轉換爲PDF文檔,下載到本地canvas

先將html生成爲圖片,再將圖片轉爲pdf文檔app

var target = document.getElementById('policy-information');// 是將target指向須要被生成的html內容異步

例如:(vue中)

<span v-html="emailContent" id="emailContentId"></span> //emailContent是定義好的html內容,而且在return裏定義了 emailContent

此時的target爲: var target = document.getElementById('emailContentId');

  使用此方式時,vue須要安裝模塊:
npm install html2canvas jspdf --save
  
  downPdf() { var that
= this; var target = document.getElementById("policy-information");//policy-information是html的id信息 //target.style.background = "#FFFFFF"; html2canvas(target, { "imageTimeout": 0, 'scale': 2, }).then(canvas => { var contentWidth = canvas.width; var contentHeight = canvas.height; //一頁pdf顯示html頁面生成的canvas高度; var pageHeight = contentWidth / 592.28 * 841.89; //未生成pdf的html頁面高度 var leftHeight = contentHeight; //頁面偏移 var position = 0; //a4紙的尺寸[595.28,841.89],html頁面生成的canvas在pdf中圖片的寬高 var imgWidth = 595.28; var imgHeight = 592.28 / contentWidth * contentHeight; var pageData = canvas.toDataURL('image/jpeg', 1.0); var pdf = new jspdf('', 'pt', 'a4'); //有兩個高度需區分,一個是html頁面的實際高度,和生成pdf的頁面高度(841.89) //當內容未超過pdf一頁顯示的範圍,無需分頁 if(leftHeight < pageHeight) { pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight)
           }
else { while(leftHeight > 0) { pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight) leftHeight -= pageHeight; position -= 841.89; //避免添加空白頁 if(leftHeight > 0) { pdf.addPage(); } } } var name = 'content-' + that.plcNo + '.pdf'; // 定義生成的pdf的文件名字 pdf.save(name); }); },

 

2、獲取後臺返回的流數據,並下載pdf zip  xlsx word ...

(這種方法我嘗試的時候發現它能下載excel,可是打不開,老是報錯... 因爲當時在解決問題 就換了種方式去實現了  僅供參考)

/** 後臺返回的字節流 下載 */
        downloadPDF () {
            let that = this;
            $.ajax({
                url:'http://localhost:8080/download'  //後臺下載信息的請求連接
                type: "GET", 
                responseType: 'arraybuffer',
                success: function(response){ //response爲後臺返回的流數據信息
                    //msword pdf zip   // application/vnd.openxmlformats-officedocument.spreadsheetml.sheet這裏表示xlsx類型
                    var blob = new Blob([response], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'});
                    var downloadElement = document.createElement('a');
                    var href = window.URL.createObjectURL(blob); // 建立下載的連接
                    downloadElement.href = href;
                    downloadElement.download = '表格'+'.xlsx'; // 下載後文件名
                    document.body.appendChild(downloadElement);
                    downloadElement.click(); // 點擊下載
                    document.body.removeChild(downloadElement); // 下載完成移除元素
                    window.URL.revokeObjectURL(href); // 釋放掉blob對象
                },
                error: function(data) {
                    alert("下載失敗"+data);
                }
            });
        },

 

3、後臺生成Excel,前端直接獲取並下載Excel

這大概是最簡單的方式吧,直接使用請求去訪問後臺,而後使用window.open打開就能夠了

3.1 get方式請求後臺,直接使用window.open打開請求結果。

downLoadExcel(){
  window.open('http://localhost:8080/ens-notify/excelDownload?batchcode='+this.batchCode); }

 

3.2 Form表單方式請求後臺,直接下載excel文件

exportAllExcel()    {
    var tt = new Date().getTime();
    var url ="http://localhost:8080"+"/excelDownload";

    /**
     * 使用form表單來發送請求
    * 1.method屬性用來設置請求的類型——post仍是get
    * 2.action屬性用來設置請求路徑。
    * 
     */
    var form=$("<form>");//定義一個form表單
    form.attr("style","display:none");
    form.attr("target","");
    form.attr("method","post");  //請求類型 若是是get請求能夠改成get
    form.attr("action",url);   //請求地址
    $("body").append(form);//將表單放置在web中

      /**
         * input標籤主要用來傳遞請求所需的參數:
         *
         * 1.name屬性是傳遞請求所需的參數名.
         * 2.value屬性是傳遞請求所需的參數值.
         *
         * 3.當爲get類型時,請求所需的參數用input標籤來傳遞,直接寫在URL後面是無效的。
         * 4.當爲post類型時,queryString參數直接寫在URL後面,formData參數則用input標籤傳遞
         *       有多少數據則使用多少input標籤
         *
       */
    var input1=$("<input>");input1.attr("type","hidden");input1.attr("name","batchcode"); input1.attr("value",'2018120601');form.append(input1);
    var input2=$("<input>");input2.attr("type","hidden");input2.attr("name","msgState"); input2.attr("value",'0');form.append(input2);
    var input3=$("<input>");input3.attr("type","hidden");input3.attr("name","businessType"); input3.attr("value",'P');form.append(input3);
    var input4=$("<input>");input4.attr("type","hidden");input4.attr("name","origin"); input4.attr("value",'222');form.append(input4);
    var input5=$("<input>");input5.attr("type","hidden");input5.attr("name","createDate"); input5.attr("value",tt);form.append(input5);
    
    form.submit();//表單提交
},      

 

3.3 Ajax異步交互

          $.ajax({
                        url: "http://localhost:8080"+"/excelDownload",
                        type: "GET",  //請求方式可變爲post
                        contentType: "application/json",
                        data: {
                            batchcode:this.batchCode,
                            msgState:this.msgState,
                            businessType:this.businessType,
                            origin:this.origin,
                            createDate:this.createDate
                        },
                        success: function(response) {
                            var blob = new Blob([response], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'});
                            var downloadElement = document.createElement('a');
                            var href = window.URL.createObjectURL(blob); // 建立下載的連接
                            downloadElement.href = href;
                            downloadElement.download = '111.xlsx'; // 下載後文件名
                            document.body.appendChild(downloadElement);
                            downloadElement.click(); // 點擊下載
                            window.URL.revokeObjectURL(href); // 釋放掉blob對象

                        }
                    });

 

 

4、.根據頁面的table數據導出Excel

使用這種方式導出Excel,須要再vue中安裝三個插件,而且導入兩個js文件放在src下
npm install -S file-saver xlsx

npm install -D script-loader
而且從網上下載js文件:  Blob.js和Export2Excal.js
放在項目的src/excel_plugin 目錄下

exportChooseExcel: function() { // 兼容ie10哦! require.ensure([], () => { const { export_json_to_excel } = require('../excel_plugin/Export2Excel'); // 引入文件 //消息號 PDF 生成批次號 保單號 客戶號 消息類型 業務分類 接收人類型 模板 ID 消息創建者 創建時間 狀態 const tHeader = ['消息號', 'PDF 生成批次號', '保單號', '客戶號', '業務分類' ,'模板 ID', '狀態' ,'創建時間', 'printFileId']; //Excel的列名稱信息定義
const filterVal = ['msgId', 'batchCode', 'biztypeno', 'custno', 'businessType' ,'templateId', 'msgstate' ,'createdDate', 'printFileId']; // const list = this.multipleSelection; //這是表格中的數據內容 (須要導出的數據內容信息 tableData) const data = this.formatJson(filterVal, list); export_json_to_excel(tHeader, data, '列表excel'); //列頭信息 數據內容 導出的excel文件名字 }) }, formatJson(filterVal, jsonData) { return jsonData.map(v => filterVal.map(j => v[j])) }
相關文章
相關標籤/搜索