1

所以我有一个简单的javascript,当用户点击更多时,它会从数据库中加载更多评论。现在我想扩展这个脚本,让它在开始让用户查看评论之前先填充 SQL 数据库。我觉得我在正确的轨道上,但我无法让它发挥作用。

首先是可以工作的代码。

$(function() {

$('.load_more').live("click",function() {


    var photoid = document.getElementById('photoid').value;
    var lastid = document.getElementById('lastid').value;


    if(lastid!='end'){

        $.ajax({
        type: "POST",
        url: "/more_comments_ajax.php",
        data: {
            photoid : photoid,
            lastid : lastid
        },
        beforeSend:  function() {
            $('a.load_more').html('<img src="/images/loading.gif" />');//Loading image during the Ajax Request

        },
        success: function(html){//html = the server response html code
            $("#more").remove();//Remove the div with id=more 
            $("div#updates").append(html);//Append the html returned by the server .


        }
        });

    }
    return false;
});
});

现在我觉得应该可以这样扩展。

$(function() {
        $.ajax({
        type: "POST",
        url: "/populate_sql.php",

        beforeSend:  function() {
            $('a.load_more').html('<img src="/images/loading.gif" />');//Loading image during the Ajax Request
        },

    sucess: $('.load_more').live("click",function() {


    var photoid = document.getElementById('photoid').value;
    var lastid = document.getElementById('lastid').value;


    if(lastid!='end'){

        $.ajax({
        type: "POST",
        url: "/more_comments_ajax.php",
        data: {
            photoid : photoid,
            lastid : lastid
        },
        beforeSend:  function() {
            $('a.load_more').html('<img src="/images/loading.gif" />');//Loading image during the Ajax Request

        },
        success: function(html){//html = the server response html code
            $("#more").remove();//Remove the div with id=more 
            $("div#updates").append(html);//Append the html returned by the server .


        }
        });

    }
    return false;
});
});
});

我在哪里失去它?

4

2 回答 2

1

感谢你的回答。这不完全是我所需要的,但它给了我一个想法,对我有用的解决方案是 2 个 javascripts 一起工作。如果有人需要类似的东西,我会把代码留在这里。

<script type="text/javascript">
jQuery(function($){
var pid = '<?php echo $ids['0']; ?>';
$.ajax({
type: "POST",
url: "/prepare_sql.php",
data: "pid="+ pid,
beforeSend:  function() {
        $('div#updates').html('<img src="/images/loading.gif" />');//Loading image during the Ajax Request

    },
    success: function(html) {
        $("div#updates").replaceWith(html);
    }
});
});
</script>


<script type="text/javascript">
$('.load_more').live("click",function() {


var photoid = document.getElementById('photoid').value;
var lastid = document.getElementById('lastid').value;


if(lastid!='end'){

    $.ajax({
    type: "POST",
    url: "/more_comments_ajax.php",
    data: {
        photoid : photoid,
        lastid : lastid
    },
    beforeSend:  function() {
        $('a.load_more').html('<img src="/images/loading.gif" />');//Loading image during the Ajax Request

    },
    success: function(html){//html = the server response html code
        $("#more").remove();//Remove the div with id=more 
        $("div#updates").append(html);//Append the html returned by the server .


    }
    });

}
return false;
});

</script>
于 2012-08-28T20:05:08.933 回答
1

您可以使用此功能。我以前用过,效果很好。在第一个回调接收到然后它发送第二个请求。

(function($) 
    {
        var ajaxQueue = $({});
        $.ajaxQueue = function(ajaxOpts) 
        {
            var oldComplete = ajaxOpts.complete;
            ajaxQueue.queue(function(next)
            {
                ajaxOpts.complete = function() 
                {
                    if (oldComplete) oldComplete.apply(this, arguments);
                    next();
                };
                $.ajax(ajaxOpts);
            });
        };
    })(jQuery);

像普通的ajax一样使用它。样本:

      $.ajaxQueue({ url: 'x.php', data:{x:x,y:y}, type: 'POST', 
        success: function(respond) 
        {
            .....
        }
        });

因此您可以检查是否有来自第一个 ajax 的回调,然后发送第二个请求。希望它可以帮助你。

于 2012-08-28T15:32:42.230 回答