Vue匯出excel功能

2021-09-02 01:23:00 字數 646 閱讀 1530

exporttable () {

require.ensure(, () => {

//表頭集合

const theader = [

'站名',

'設計規模(萬噸/日)',

'處理水量(萬噸)',

'符合率'

//表中的prop值

const filterval = [

'stnm',

'designscale',

'watertreatment',

'coincidencerate'

//table中的資料集合multipleselection

const list = this.multipleselection

//使用方法轉換表中資料集合,可在其中排序等操作

const data = this.formatjson(filterval, list)

呼叫外部的js外掛程式中方法exportjsontoexcel

exportjsontoexcel(theader, data, '汙水廠資訊列表')

formatjson (filterval, jsondata) {

return jsondata.map(v => filterval.map(j => v[j]))

excel匯出功能

1 pom.xml匯入依賴 org.apache.poi poi org.apache.poi poi ooxml 本地倉庫位置 2 controller apioperation value 分析資料 匯出 httpmethod get notes 說明 匯出csv格式資料 response st...

JSF 匯出excel功能

前台頁面標籤 後代邏輯 只留下核心 public string export 要匯出的資料 每列的名字,根據你頁面中真是資料編輯 getexcel title,header0,beanlist,out,生成excel 的方法 setrunmessage stopwait catch exceptio...

vue 匯出excel 亂碼

經過小女子的不懈努力,終於解決了。responsetype blob 2.呼叫介面 看後台返回的是二進位製流還是blob物件 轉化成 blob物件 2 那就方便了直接使用 let url window.url.createobjecturl res.data console.log blob var...