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.
当返回 Post 的 AJAX 响应时,我需要一种“强制”下载文件的方法。
我无法使用window.open(),因为我没有有用的 URL。
window.open()
有没有办法使用 Javascript 或 Dojo 工具包来强制下载 HTTP 响应中的文件?
您的服务器需要添加 Content-Type 和 Content-Disposition 标头以强制下载。
Content-Type: application/octet-stream Content-Disposition: attachment; filename=filename.ext