美文网首页
ajax中的asnyc:false/true

ajax中的asnyc:false/true

作者: Baowj | 来源:发表于2018-09-25 10:38 被阅读0次

    async:false:同步,所有的请求均为同步请求,在没有返回值之前,同步请求将锁住浏览器,用户其它操作必须等待请求完成才可以执行。

    function testAsync(){
        var temp;
        $.ajax({
            async: false,
            type : "GET",
            url : 'tet.php',
            complete: function(msg){
                alert('complete');
            },
            success : function(data) {
                alert('success');
                temp=data;
            }
        });
        alert(temp+'   end');
    }
    
    tet.php
    
    <?php
    
        echo "here is html code";
        sleep(5);
    
    ?>
    

    async: false,(默认是true);
    如上:false为同步,这个 testAsync()方法中的Ajax请求将整个浏览器锁死,
    只有tet.php执行结束后,才可以执行其它操作。

    当async: true 时,ajax请求是异步的。但是其中有个问题:testAsync()中的ajax请求和其后面的操作是异步执行的,那么当tet.php还未执行完,就可能已经执行了 ajax请求后面的操作,
    如: alert(temp+' end');
    然而,temp这个数据是在ajax请求success后才赋值的,结果,输出时会为空。

    相关文章

      网友评论

          本文标题:ajax中的asnyc:false/true

          本文链接:https://www.haomeiwen.com/subject/ofvkoftx.html