这是我的代码:
fileTransfer.download(
"http://www.shirleybriceheath.net/pdfs/dummyPDF.pdf",
"file://sdcard/dummyPDF.pdf", // the key factor !!!
function(theFile) {
alert("download complete: " + theFile.toURL());
console.log("download complete: " + theFile.toURL());
},
function(error) {
alert("download error source " + error.source);
alert("download error target " + error.target);
alert("upload error code: " + error.code);
},
true
);
我是第一次使用Cordova文件传输插件在Cordova / Phonegap中实现PDF文件下载,但我不断收到错误。
在日志中我得到:
[09-20 10:53:55.402 282:766 D /] 无法获取设备0000000F的查找信息
我试图找出我在编码部分是否做错了,或者是否存在任何权限问题,这不允许我下载PDF文件,但是没有找到任何有用的解决方案。请帮忙......