通过a标签// 创建a标签const link = document.createElement(a)// download属性link.setAttribute(download, row.newName)// href链接link.setAttribute(href, row.downloadPath)// 自执行点击事件link.click...
通过a标签
// 创建a标签 const link = document.createElement('a') // download属性 link.setAttribute('download', row.newName) // href链接 link.setAttribute('href', row.downloadPath) // 自执行点击事件 link.click() document.body.removeChild(link)
通过open
window.open(row.downloadPath)
沃梦达教程
本文标题为:vue通过地址下载文件
基础教程推荐
猜你喜欢
- Ajax发送和接收请求 2022-12-15
- uniapp开发微信小程序自定义顶部导航栏功能实例 2022-10-21
- 在实战中可能碰到的几种ajax请求方法详解 2023-02-01
- 使用ajax跨域调用springboot框架的api传输文件 2023-02-23
- cocos creator游戏实现loading加载页面,游戏启动加载动画 2022-10-29
- HTML clearfix清除浮动讲解 2022-11-20
- JS滚动到顶部踩坑解决记录 2023-07-10
- Ajax+smarty技术实现无刷新分页 2022-12-15
- Javascript Bootstrap的网格系统,导航栏和轮播详解 2023-08-11
- 关于Ajax跨域问题及解决方案详析 2023-02-23