|
楼主 |
发表于 2015-11-24 17:17:34
|
显示全部楼层
本帖最后由 liangyongfei 于 2015-12-14 15:26 编辑
downloadFile方法
调用插件:
require("$UI/system/lib/cordova/cordova");
调用方法:var pdfUrl = baseUrl.substring(0,baseUrl.length-1)+atta_path;//服务器文件地址
var fileTransfer = new window.FileTransfer();//实例化
var uri = encodeURI(pdfUrl);
fileTransfer.download(
uri,
fileURL,
function(entry) {
OpenFile(entry.fullPath);
console.log("download complete: " + entry.toURL());
},
function(error) {
alert("download error target " + error.target);
console.log("download error target " + error.target);
}
);
}
报错:Cannot call method 'download' of undefined
例子是看懂了 但是用起来有些不一样 请指教
|
|