以下是我的代码(表单是我要下载的文件的名称)
var fileURI = "http://myurl/"+form;
window.requestFileSystem(LocalFileSystem.PERSISTENT,0,function(fs){
var filepath = fs.root.fullPath + "storage/emulated/0/Download/" + Form;
alert(filepath);
var ft = new FileTransfer();
ft.download(fileURI, filepath, function(entry){
alert(entry.fullPath);
}, function() {
alert("error");
});
});
令人惊讶的是,我的Android手机上的代码工作正常,但对于使用此应用程序的其他Android设备也是如此。我现在很沮丧,任何类型的帮助都会令人惊叹。 TIA
答案 0 :(得分:0)
window.open(' url',' _system');