Vue ダウンロード ファイル ストリーム

  1. リスト項目

この関数ではダウンロードまたはエクスポートにファイル ストリームを使用する必要があるため、次のコードは参照のみを目的としています。

xls形式の設定:

タイプ: 'application/vnd.ms-excel;charset=utf-8'、

xlsx格式配置:type:‘application/vnd.openxmlformatsofficedocument.spreadsheetml.sheet;charset=utf-8’

<el-button type="primary" plain  @click="allDownload">下载</el-button>
methods:{
    
    
allDownload() {
    
    
      const params = this.exportAllParams
      console.log(params)
      // const params = JSON.parse(JSON.stringify(this.searchParams))
      delete params.current
      delete params.size
      delete params.total
      allExportList(params).then((res) => {
    
    
        const blob = new Blob([res], {
    
    
          type: 'application/vnd.ms-excel'
        })
        const a = document.createElement('a')
        const href = window.URL.createObjectURL(blob)
        a.href = href
        a.download = '实时监控'
        document.body.appendChild(a)
        a.click()
        // console.log(a)
        document.body.removeChild(a)
        window.URL.revokeObjectURL(href)
      })
    },
}

おすすめ

転載: blog.csdn.net/outaidered/article/details/129306244