Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用这个下载-
<a href={`${link}`} download="file">Download</a>
但这对我不起作用。我使用 Chrome 浏览器。它只是在浏览器中打开文件。
function download(fileUrl, fileName) { let a = document.createElement("a"); a.href = fileUrl; a.setAttribute("download", fileName); a.click(); }
尝试添加 target="_blank":
<a href={`${link}`} download="file" target="_blank" >Download</a>