vue3实现图片的下载

写一个工具类,放到src/utils文件夹下新建文件previewDownFile.js

复制代码
import axios from "axios";
import { ElMessage} from "element-plus";
 
export function previewBtn(url,fileName) { // url-下载预览地址 fileName-文件名
    if (!fileName) { // 图片预览
        window.open(url);
  }else{  // 文件下载
    axios({
      url,
      method: "GET",
      responseType: "blob"
    })
      .then(res => {
        const elink = document.createElement("a");
        elink.download = fileName;
        elink.style.display = "none";
        elink.href = URL.createObjectURL(res.data);
        document.body.appendChild(elink);
        elink.click();
        URL.revokeObjectURL(elink.href); // 释放URL对象
        document.body.removeChild(elink);
        ElMessage.success("下载成功")
      })
      .catch(() => {
        ElMessage.error("下载失败!");
      });
    }
}

引入

import { previewDownFile } from "@/utils/previewDownFile";

调用

复制代码
<div class="downLoadImg svgBox">
    <el-icon size="30" @click="previewBtn(item,item.projectName+'_附件'+(index+1))">
        <Download />
    </el-icon>
</div>

vue3导入icon图标

import { Download } from '@element-plus/icons-vue';

相关推荐
j***8946几秒前
spring-boot-starter和spring-boot-starter-web的关联
前端
star_11126 分钟前
Jenkins+nginx部署前端vue项目
前端·vue.js·jenkins
im_AMBER13 分钟前
Canvas架构手记 05 鼠标事件监听 | 原生事件封装 | ctx 结构化对象
前端·笔记·学习·架构
JIngJaneIL14 分钟前
农产品电商|基于SprinBoot+vue的农产品电商系统(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·农产品电商系统
Tongfront19 分钟前
前端通用submit方法
开发语言·前端·javascript·react
c***727419 分钟前
SpringBoot + vue 管理系统
vue.js·spring boot·后端
可爱又迷人的反派角色“yang”22 分钟前
LVS+Keepalived群集
linux·运维·服务器·前端·nginx·lvs
han_23 分钟前
前端高频面试题之CSS篇(二)
前端·css·面试
JIngJaneIL24 分钟前
书店销售|书屋|基于SprinBoot+vue书店销售管理设计与实现(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·书店销售管理设计与实现
徐同保26 分钟前
n8n CLI 项目结构全面分析(node后端)
前端