this.$axios
.get("/wx/villageargot/export", {
params: {
subDistrictId: this.query.streetId
},
responseType: "blob"
})
.then(res => {
const link = document.createElement("a");
let blob = new Blob([res.data], { type: "application/vnd.ms-excel" });
link.style.display = "none";
link.href = URL.createObjectURL(blob);
let num = "";
for (let i = 0; i < 10; i++) {
num += Math.ceil(Math.random() * 10);
}
link.setAttribute("download", "用户_" + num + ".xls");
document.body.appendChild(link);
link.click();
// 直接删除了a标签 无需通过 window.URL.revokeObjectURL(link.href)释放内存
document.body.removeChild(link);
NProgress.done();
})
.catch(error => {
this.$Notice.error({ title: "错误", desc: "网络连接错误" });
});
前端js/vue下载后台传过来的流文件(如excel)并设置下载文件名
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。