我正在使用Phonegap插件中的FileTransfer.download函数在我的App mobile中下载文件。
该函数是异步的,因此在不依赖此函数结论的情况下执行下一行。
我的应用程序应用程序在登录过程中从服务器捕获了用户照片,因此在完成此操作后无法将用户移至主屏幕。但是用我的实际代码,它不会发生,因为我不知道该怎么做。
您可以在下面查看我的代码:
var usuarios = json.usuarios;
var fileTransfer = new FileTransfer();
for(var key in usuarios) {
if(usuarios.hasOwnProperty(key)){
if(usuarios[key].tipo == "titular"){
var titular = {
"id" : usuarios[key].id,
"email" : $("#login-email").val(),
"foto" : "images/perfil.jpg"
};
localStorage.setItem('appnowa-titular', JSON.stringify(titular));
if(usuarios[key].foto == "1"){
window.fileDownloadName = "appnowa-perfil-" + usuarios[key].id + ".jpg";
console.log('downloadFile');
window.requestFileSystem(
LocalFileSystem.PERSISTENT,
0,
function(fileSystem){
console.log('onRequestFileSystemSuccess');
fileSystem.root.getFile(
'dummy.html',
{create: true, exclusive: false},
function(fileEntry){
console.log('onGetFileSuccess!');
var path = fileEntry.toURL().replace('dummy.html', '');
var fileTransfer = new FileTransfer();
fileEntry.remove();
fileTransfer.download(
'https://www.myserver.com/imagens/clientes/' + window.fileDownloadName,
path + window.fileDownloadName,
function(file) {
console.log('download complete: ' + file.toURL());me;
titular.foto = file.toURL();
},
function(error) {
console.log('download error source ' + error.source);
console.log('download error target ' + error.target);
console.log('upload error code: ' + error.code);
titular.foto = "images/perfil.jpg";
}
);
},
fail
);
},
fail
);
console.log("1 " + titular.foto);
}
}
}
}
localStorage.setItem('appnowa-dependentes', JSON.stringify(dependentes));
appNowa.pushPage('mainPage.html'); //go to next page
最佳答案
我认为您可以通过两种方式实现这一目标,
链接的回调或在所有回调中进行状态测试;
我将编写我认为可能是可行的解决方案的伪代码(未经测试,不能保证)
afterCharge=function(){
doYourStuffHere;
}
//method 1 in your callback
var complete=0
len = usuarios.lenght;
for(var key in usuarios){
//do yourstuff
fileTransfer.download(
file,
path,
function(file){
//do your stuff
complete++;
if(len===complete){
afterCharge();
}
},
function(error){
//do your stuff
complete++;
if(len===complete){
afterCharge();
}
}
);
}
关于javascript - Javascript-异步功能完成后如何等待下一行执行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27327988/