私はcordovaアンドロイドデバイスで動作しています。 'console.log( "write success");私はファイルが保存されている場所に表示されないとは思わない。どこでもCordova jsPDF - PDFファイルが生成されました。モバイルでPDFファイルが見つかりません。
ソースコード http://www.tricedesigns.com/2014/01/08/generating-pdf-inside-of-phonegap-apps/
私は2つの異なるアンドロイドで実行して試してみた、 は、PDFファイルを作成し、任意のフォルダに保存し
//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);
感謝!!
この解決策を見つけましたか?私は同じ問題に直面している! – Philomath
いいえ:{、私も助けが必要です –