C# 下载模板文件 Excel

后端代码

cs 复制代码
[HttpGet("DownloadExcel")]
  public async Task<dynamic> DownloadExcel(string tmplName)
        {
            var _fileName = "导入表模板.xlsx";
            
            var filePath = @"Files\DownLoad\";
            var NewFile = Path.Combine(filePath, tmplName);
            var stream = new FileStream(NewFile, FileMode.Open);
            return new FileStreamResult(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        }

前端代码 vue 2.0

javascript 复制代码
// 下载导入表模板
    downloadExcel() {
      Axios.get('/api/Excel/DownloadExcel', {
        params: {
          tmplName: 'Excel'
        },
        responseType: 'blob',
      })
          .then(res => {
            const link = document.createElement('a')
            // const blob = new Blob([res.data], { type: 'application/vnd.ms-excel' })
            const blob = new Blob([res.data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' })
            link.style.display = 'none'
            link.href = URL.createObjectURL(blob)
            link.download = 'xxx入表模板.xlsx'
            document.body.appendChild(link)
            link.click()
            document.body.removeChild(link)
          })
          .catch(error => {
            console.log(error)
          })
    },

注意: 发布的WebAPI项目中有模板文件和文件夹

相关推荐
码农丁丁2 小时前
[python3]Excel解析库-xlwt
python·excel·xlwt
军训猫猫头6 小时前
插曲.带“?“的类型
c#
Lumos_yuan7 小时前
Lumos学习王佩丰Excel二十四讲系列完结
学习·excel·教程总结
hmywillstronger7 小时前
【VBA】【EXCEL】将某列内容横向粘贴到指定行
excel
码农丁丁7 小时前
[python3]Excel解析库-calamine,10倍openpyxl性能
开发语言·python·excel·calamine
东京老树根7 小时前
Excel 技巧02 - 如何批量输入百分号 (★),如何输入百分号并指定小数位数,如何批量删除百分号,如何批量删除小数最后的0?
笔记·学习·excel·vba
xiaozaq7 小时前
Excel使用VLOOKUP时注意绝对引用和相对引用区别
excel
格林威9 小时前
Baumer工业相机堡盟LXT工业相机如何升级固件使得相机具有RDMA功能
人工智能·数码相机·算法·计算机视觉·c#
流形填表10 小时前
大风车excel:如何题库批量导入excel?批量导入excel
excel
码农丁丁10 小时前
[python3]Excel解析库-XlsxWriter
python·excel·xlsxwriter