天天看點

vue前端資料導出excel表格及後端資料導出excel方法

一、前端導出excel表格

1.安裝vue-json-excel

npm install vue-json-excel -S
           

2.main.js裡面引入并注冊使用

import JsonExcel from 'vue-json-excel'
Vue.component('downloadExcel', JsonExcel)
           

3、頁面中使用

<download-excel
    class = "export-excel-wrapper"
    :data = "json_data"
    :fields = "json_fields"
    name = "filename.xls">
    <!-- 上面可以自定義自己的樣式,還可以引用其他元件button -->
    <!-- <el-button type="primary" size="small">導出EXCEL</el-button> -->
</download-excel>
           

在這裡說明一下元件的各個屬性

json_data:需要導出的資料
json_fields:自主選擇要導出的字段,若不指定,預設導出全部資料中心全部字段
屬性名	類型	描述
data	Array	需要導出的資料,支援中文
fields	Object	定義需要導出資料的字段
name	String	導出excel的檔案名
type	String	導出excel的檔案類型(xls,csv),預設是xls
           

下面給個執行個體

注意以下幾點

json_fields裡面的屬性是excel表每一列的title,注意多個詞組組成的屬性名要加雙引号

如果需要自定義導出的資料,可以定義回調函數。

data() {
    return {
      json_fields: {
        "Complete name": "name",    //正常字段
        Telephone: "phone.mobile", //支援嵌套屬性
        "Telephone 2": {
          field: "phone.landline",
                    //自定義回調函數
          callback: value => {
            return `Landline Phone - ${value}`;
          }
        }
      },
      json_data: [
        {
          name: "Tony Peña",
          city: "New York",
          country: "United States",
          birthdate: "1978-03-15",
          phone: {
            mobile: "1-541-754-3010",
            landline: "(541) 754-3010"
          }
        },
        {
          name: "Thessaloniki",
          city: "Athens",
          country: "Greece",
          birthdate: "1987-11-23",
          phone: {
            mobile: "+1 855 275 5071",
            landline: "(2741) 2621-244"
          }
        }
      ],
      json_meta: [
        [
          {
            " key ": " charset ",
            " value ": " utf- 8 "
          }
        ]
      ]
    };
  }
           

二、後端傳回資料流, 前端導出下載下傳xls檔案

export function exportMethod() {
    axios({
        method:'get',
        url: url+'params',
        responseType: 'blob'
    }).then((res) => {
        let blob = new Blob([res], {type: 'application/vnd.ms-excel'})
        //相容IE10
		if (window.navigator && window.navigator.msSaveOrOpenBlob) {
			window.navigator.msSaveOrOpenBlob(blob, '報表統計');
		}else{
			const link = document.createElement('a')
			link.style.display = 'none'
			link.href = URL.createObjectURL(blob)
			link.download = '報表統計' //下載下傳的檔案名
			document.body.appendChild(link)
			link.click()
			document.body.removeChild(link)
		}
    }).catch(error => {
        console.log(error)
    })
}
           

今日頭條極速版邀請碼【941363528】

抖音極速版邀請碼【8121029958】

快手極速版邀請碼【426942961】

番茄聽書邀請碼 【453330438】

番茄免費小說邀請碼【7556736071】

繼續閱讀