如何在partialjs(nodejs)中强制下载文件pdf

时间:2014-09-11 14:31:59

标签: jquery node.js http-headers download

我正在使用partialjs并有疑问,如何强制下载partialjs?

我的代码做了这样的事情:

HTML:

<a href="/media/document.pdf" class="download-button">Download pdf</a>

我使用jquery filedownload,它运行良好下载&#39; zip&#39;例如文件,但在&#39; pdf&#39;由于这种http标头设置,我不知道在nodejs / partialjs中设置的位置。

javascript(jquery):

  $('.download-button').on('click', function(e) {
       e.preventDefault();
       var filePath =$(this).attr('href');   
       // jquery do something here
       //...
      $.fileDownload(filePath); 
  });

请让我高兴..

0 个答案:

没有答案