We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
import batchTemplate from "./template.xlsx"; function downloadTemplate() { axios({ url: batchTemplate, method: "GET", headers: { "Content-Disposition": "attachment; filename=template.xlsx", "Content-Type": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" }, responseType: "arraybuffer" }).then(response => { console.log(response); const url = window.URL.createObjectURL(new Blob([response.data])); console.log(url); const link = document.createElement("a"); link.href = url; link.setAttribute("download", "template.xlsx"); //or any other extension document.body.appendChild(link); link.click(); }); }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click