node.js导出到pdf系统下载文件夹

时间:2014-08-26 01:57:49

标签: javascript node.js pdf sails.js

我一直在使用node.js,以下函数在导出为pdf时工作正常。

但我希望这个导出文件路径sytem下载文件夹路径。   我想要喜欢这个

例如:" c:/ user / username / download" /filename.pdf" ;;

请帮助我该怎么做。

convertpdf :  function(req,res){
     var  wkhtmltopdf = require('wkhtmltopdf')
      var outputPDF =  "c:/temp/"+uniqueIDs+".pdf";

   _.map(exportDate, function(ep) {

        html = html + "<tr><td>" + ep.orderno +"</td><td>" + ep.amount +"</td><td>" +ep.milestoneid +"</td><td>" + ep.storyid +"</td><td>" + ep.date +"</td><td>" + ep.status +"</td><td>" + ep.description +"</td></tr>";
  });
   html = html + "</table></body></html>";
         wkhtmltopdf(html, {output: outputPDF}, function (err, result) {
             if(!err) {
                   message = "successFully exported to" + outputPDF ;
             return res.json({
                   message: message,
                    type: 'success'
            });
    }else {
           message = "unsuccessFull exported to pdf";
             return res.json({
                    message: message,
                     type: 'error'
               });
     }  
 }); // end of wkhtmltopdf 

请任何人帮助我如何解决这个问题。

感谢。

0 个答案:

没有答案