码迷,mamicode.com
首页 > Web开发 > 详细

jquery.fileDownload plugin: Success msg alert before actual pdf download completed

时间:2017-10-05 18:28:31      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:max   ensure   use   contains   multi   finally   trie   ini   nta   

Currently , I use jquery fileDownload plugin to download multiple pdf that in a list page, which every single hyperlink can download one pdf file.
When i click 1st link, every thing occured ok, but when click 2nd or other link, success msg alert before actual pdf download completed. It confused me a few days...
Finally, i find the reason and got a way to resolve the problem.

We can check source code in jquery.filedownload.js, when document.cookie contains value ‘fileDownload=true‘, it will pop up success msg. The key is when finish the 1st download, the cookie not expired!!! So when you click second ,third link,msg alert before download.
I tried set cookie ‘s maxAge ,but it still same error..

The thing we do is every download we need create a unique cookie.

Thanks http://gruffcode.com/2010/10/28/detecting-the-file-download-dialog-in-the-browser/,
We can generating a token value using the current timestamp as the value of ‘filedownload‘, This token can really be any arbitrary string value, but we do want to try and make it unique per request coming from the same browser, and using the timestamp is a pretty easy way to do this. We take that token and add it to the form within that hidden field that we created. This will ensure that the token value gets submitted up to the server (more on this later).

jquery.fileDownload plugin: Success msg alert before actual pdf download completed

标签:max   ensure   use   contains   multi   finally   trie   ini   nta   

原文地址:http://www.cnblogs.com/uu5666/p/7629476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!