两个ajax同时起作用?不工作

时间:2013-09-23 14:55:28

标签: php ajax mootools

enter image description here enter image description here

我有一个简单的AJAX脚本,可以调用PHP文件并获取数据。

window.addEvent('domready', function() {
    $('dbform').addEvent('submit', function(e) {
        new Event(e).stop();
        var intervalId =setInterval(function() 
        {
            var Ajax2 = new Request({
                url: '/tools/getdata.php',
                method: 'post',
                data: 'read=true',
                onComplete: function(response)
                {
                    $('results').set('html', response);
                }
            }).send();
        },1000);

        var postString = 'subbutton=' + $('subbutton').value;
        var Ajax = new Request({
            url: '/tools/getdata.php',
            method: 'post',
            data: postString,
            onRequest: function()
            {
                $('message').set('text', 'loading...');
            },
            onComplete: function(response)
            {
                $('message').set('text','completed');
                clearInterval(intervalId);
            },
            onFailure: function() 
            {
                $('message').set('text', 'ajax failed');
            }
        }).send();
    });
});

它提交的文件也是。

$object= new compare();
if(isset($_POST['subbutton'])=='Run')
{
    // This take about 5 minutes to complete
    $run=$object->do_compare();
}

if(isset($_POST['read'])=='true')
{
    /// in the mean time, the first ajax function is suppose to return data from here..while
    // the do_compare() function finish.
    // the problem is that it only return it once the do_compare() finish
    /// 
    echo 'read==true';
}

脚本工作正常,期望当Ajax请求每隔一秒检查一次文件时,它不会从$_POST['read']返回任何内容,直到$run=$object->do_compare();完成。

为什么这样做?我要做的是,一个Ajax函数从do_compare函数获取数据,另一个ajax函数也从getdata.php文件中独立获取。

2 个答案:

答案 0 :(得分:2)

问题在于:

if(isset($_POST['subbutton'])=='Run')

isset返回布尔值true或false,因此如果设置$_POST['subbutton']而不是它返回true并且由于php true == 'Run'的弱类型系统,因为'Run'的计算结果为true。使用

if(isset($_POST['subbutton']) && $_POST['subbutton'] === 'Run')

if(isset($_POST['read']) && $_POST['read'] === 'true')

答案 1 :(得分:0)

您是否在PHP AJAX处理程序中使用会话?如果是这样,您的会话文件可能会被阻止。

第二:Javascript在浏览器内部是单线程的(有关更多信息,请参阅google)。