我试图通过发送到 php 文件的数组运行,并在 php 完成下载后在回调中发送下一个值。这是我到目前为止所拥有的。
我的数组如下所示。
["http://example.com/test1.zip", "http://example.com/test2.zip", "http://example.com/test3.zip", "http://example.com/test4.zip", "http://example.com/test5.zip"]
以上是 console.log(values) 的输出;以下。它从复选框值中获取一些 url。
$('.geturls').live('click',function(){
var values = new Array();
$.each($("input[name='downloadQue[]']:checked"), function() {
values.push($(this).val());
ajaxRequest($(this).val(),function(response){
console.log(response);
});
});
console.log(values);
return false;
});
然后这会调用一个 ajax 函数,我正在尝试对其进行回调。
function ajaxRequest(urlSend,callback){
var send = {
url: urlSend
}
$.ajax({
type: "POST",
url: "<?php echo base_url(); ?>index.php/upload",
data: send,
//dataType: "json",
//timeout: 8000,
beforeSend: function() {
},
success: function(response) {
callback('added');
},
error: function (response) {
callback('false');
}
});
}
然后这将发送到一个 php 文件。
function upload(){
$output = shell_exec("wget {$_POST['url']} 2>&1");
return true;
}
我想要做的是从一个已完全下载的 url 回调之后,然后从数组中获取下一个值并下载该 url,依此类推,直到数组中的所有 url 都被完全下载。
目前它只是下载第一个值然后崩溃,因为在返回 true 的返回值后它不会重新启动循环。
希望这对那些只是在寻找一些帮助的人有意义,以便在完成后通过回调循环遍历一组值。