vue 如何下载文件

项目要求:需要下载线上的文件,如果用,直接打开图片,不会将文件下载到本地,只能用以下方法解决

  • download.js
/* 下载 */
export function downloadFiles(filePath, fileName) {
  fetch(filePath).then(res => res.blob()).then(blob => {
    const a = document.createElement("a");
    a.href = URL.createObjectURL(blob);
    a.download = fileName;
    document.body.appendChild(a); //追加a标签
    a.click(); //a标签点击
    document.body.removeChild(a); //移除节点
  })
}
  • 在具体页面调用 下载JS






  • 效果图
效果图

你可能感兴趣的:(vue 如何下载文件)