搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

downloading csv file does not ask for where to store file

  • 2 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 Astridr

more options

Firefox is set to "Always ask me where to save files".

I have a WebService from which to download a download.csv file via a POST request (must be a POST request and not a GET request due to data issues). I'm using jquery.fileDownload.js in the Website to achieve this. When pressing the download button, the screen 'Opening download.csv' opens with the option 'Save File' preset. After pressing OK, an explorer window should occur to be able to choose the file location. But it is NOT shown. Instead nothing more happens.

What could be the problem? P.S.: in other browsers it works fine.

Firefox is set to "Always ask me where to save files". I have a WebService from which to download a download.csv file via a POST request (must be a POST request and not a GET request due to data issues). I'm using jquery.fileDownload.js in the Website to achieve this. When pressing the download button, the screen 'Opening download.csv' opens with the option 'Save File' preset. After pressing OK, an explorer window should occur to be able to choose the file location. But it is NOT shown. Instead nothing more happens. What could be the problem? P.S.: in other browsers it works fine.

被采纳的解决方案

Hello gnittala,

thanks for your response. 1. MIME type is set correctly. 2. When using this config, the file is downloaded correctly.

Now I found out, what was the problem: the jquery.fileDownload.js plugin was deleting the internally used iframe too early, so that the explorer window could not be displayed. Keeping the iframe longer (at least until explorer window is shown, or easier reuse it in next download call) solves the problem.

Astridr

定位到答案原位置 👍 0

所有回复 (2)

more options

Hello,

Can you please check the following 1. The MIME type of the CSV file being pushed from the webservice 2. If you have set FF preferences to always download the CSV file to a specific location (Firefox -> Preferences -> General -> Downloads)

Once we are sure that the file is indeed getting downloaded, then the next step would be to enable the user to get the prompt for the location to save the file in.

Thank you

more options

选择的解决方案

Hello gnittala,

thanks for your response. 1. MIME type is set correctly. 2. When using this config, the file is downloaded correctly.

Now I found out, what was the problem: the jquery.fileDownload.js plugin was deleting the internally used iframe too early, so that the explorer window could not be displayed. Keeping the iframe longer (at least until explorer window is shown, or easier reuse it in next download call) solves the problem.

Astridr