Cordova jsPDF - PDF生成,我在Mobile

时间:2016-04-08 20:07:41

标签: javascript android cordova cordova-plugins jspdf

我在cordova android设备上运行,  我可以上线'console.log(“写成功”);'但我不认为该文件没有出现在保存的位置。

我试过在2个不同的机器人中跑步,   创建一个pdf文件并保存在任何文件夹

源代码   http://www.tricedesigns.com/2014/01/08/generating-pdf-inside-of-phonegap-apps/

    //FIRST GENERATE THE PDF DOCUMENT
console.log("generating pdf...");
var doc = new jsPDF();

doc.text(20, 20, 'HELLO!');

doc.setFont("courier");
doc.setFontType("normal");
doc.text(20, 30, 'This is a PDF document generated using JSPDF.');
doc.text(20, 50, 'YES, Inside of PhoneGap!');

var pdfOutput = doc.output();
console.log( pdfOutput );

//NEXT SAVE IT TO THE DEVICE'S LOCAL FILE SYSTEM
console.log("file system...");
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {

   console.log(fileSystem.name);
   console.log(fileSystem.root.name);
   console.log(fileSystem.root.fullPath);

   fileSystem.root.getFile("test.pdf", {create: true}, function(entry) {
      var fileEntry = entry;
      console.log(entry);

      entry.createWriter(function(writer) {
         writer.onwrite = function(evt) {
         console.log("write success");
      };

      console.log("writing to file");
         writer.write( pdfOutput );
      }, function(error) {
         console.log(error);
      });

   }, function(error){
      console.log(error);
   });
},
function(event){
 console.log( evt.target.error.code );

谢谢!

1 个答案:

答案 0 :(得分:0)

我的问题已经分类

Opening a PDF in cordova javascript

jsPDF and cordova Cant view the pdf file

我试图将文件写入root并从那里访问它,这在非root电话中是不可能的。