且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我无法通过AJAX下载文件Spring MVC中不保存文件服务器

更新时间:2023-01-22 11:23:08

您不能使用AJAX来下载文件。

You can't use ajax to download files.

或者使用

  • 在jQuery的AJAX的文件下载插件http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/
  • 或生成服务器端的文件中使用AJAX通过URL和 使用了window.location =文件名
  • Jquery ajax file download plugin http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/
  • or generate the file on server side pass the url using ajax and use window.location="fileName"