const a = document.createElement('a'); // 创建a标签
document.body.appendChild(a); // 向body里面添加a标签
a.setAttribute('style', 'display:none'); // a 标签样式隐藏
a.setAttribute('href', location.protocol + '//' + location.host + url); // 拼接url,( a标签里面的href属性)
a.setAttribute('download', 'template.xlsx'); // 设置a标签的属性为download template.xlsx 默认下载的文件名为template 格式是xlsx
a.click(); // 点击a标签
前端小白,如果大神有更好的办法,欢迎随时指教。