在服务器端查询后,如何等待客户端的输入?

时间:2012-08-03 13:03:42

标签: php jquery

要合并一些SQL调用,我试图向服务器发出一个查询,然后让客户端遍历每个结果。需要注意的是,在处理下一个结果之前,我需要等待用户输入。这可能吗?

我有类似下面的jquery调用:

$.post('functions/file_functions.php', {type: 'test', f: 'load'}, function(data) {
    if (data.success) {
        $.each(data.files, function() {

            // Can I wait for user input at this point and then process the next
            // file after a users interaction (e.g. a button click)?

        });
    }
}, "json");

2 个答案:

答案 0 :(得分:4)

我将稍微扩展我的评论,并希望将其作为一个有用的答案。 JavaScript是单线程的,因此在等待其他东西(例如被点击的元素)发生时,无法阻止函数的执行。相反,你可以做的是在AJAX POST请求成功返回时将文件列表存储到数组中,然后使用单独的click事件处理程序循环它们(我假设每次点击获得一个文件)。

代码可能如下所示:

$(function() {
    var files, index = 0;

    $.post('functions/file_functions.php', {type: 'test', f: 'load'}, function(data) {
        if (data.success) {
            files = data.files;
        }
    }, "json");

    $('.mybutton').click(function() {
        if(files) {
            var file = files[index++];
            // do something with the current file
        }
    });

});

答案 1 :(得分:0)

在javascript中“屏蔽”用户输入的一种方法是拨打window.prompt(其中包括window.confirm,window.showModalDialog)。但是,它不是真正可自定义的,您可能只想保存从服务器返回的data并进行某种基于用户输入事件的处理。

在代码中它看起来像这样:

var the_answer = window.prompt("What's the airspeed velocity of an unladen swallow?");
console.log(the_answer);