Filetransfer.download 在某些手机上无法正常工作

Filetransfer.download not working properly in some mobiles

下面是我的代码(表格是我要下载的文件的名称)

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 手机 phone 上运行良好,但对于使用此应用程序的其他 android 设备却并非如此。我现在目瞪口呆,目前任何类型的帮助都会很棒。 TIA

window.open('url', '_system');