0

我正在使用 ajax(通过 jquery)与数据库交换数据。由于 .ajaxcomplete 函数始终基于带有选择器的 jquery 对象,有没有其他方法可以检查此显式 ajax 请求是否成功?.ajax 不属于任何特定的 dom 对象,例如 div 等。我想在纯 Javascript 文件中使用 Ajax。在这一刻没有与特定的 html 页面相关联。$(document).ajaxComplete() 有效,但不是我想要的

this.replot=function(){ 
    $(this).ajaxComplete(function() {alert('hallo');});   //here is my prob
    var that=this;
    var anfrage='anfrage= SELECT '+ this.xvaluecol+', '+this.y1valuecol+ ' FROM '+ this.tablename+ ' WHERE '+this.xvaluecol+' <=\'2010-11-06 15:00:00\' AND '+this.xvaluecol+' >=\'2010-11-06 07:00:00\'';
    $.ajax({
        url : 'getdata.php',
        dataType : 'json',
        data: anfrage,
        type : 'post',
        success : function(json) {
            if(String(json[0][0]).search('error')==-1)
            {
                that.data1=json;
                that.xaxismin=json[0][0];
                that.xaxismax=json[json.length-1][0];
                that.yaxsismin=parseInt(that.find_min(json));
                that.yaxismax=parseInt(that.find_max(json));
                console.log(json);
                console.log("yaxismin="+that.yaxismin);
                console.log("yaxismax="+that.yaxismax);
                //c=new Date((that.xaxismin));
                //c.setMinutes(c.getMinutes()+1441+60);
                //(c.toLocaleString());
                that.update();
                $.jqplot(that.divid,[that.data1,that.data2],that.options).replot();
            }
            else
            {
                alert('Plot nicht moeglich Fehlercode: '+json[0][1]);
            }
        }
    })
}
4

3 回答 3

1

我倾向于使用ajaxStopover ajaxComplete。虽然不确定所有差异,但我认为它是相似的。

您绑定ajaxComplete到的元素并不重要。以下两段代码的作用完全相同:

$("#some_element").ajaxComplete(function () {
    alert($(this).html());
});

相对

$(document).ajaxComplete(function () {
    alert($("#some_element").html());
});

所以我认为你的问题可以通过使用来解决$(document)

于 2012-08-17T09:56:04.607 回答
0

定义 ajax 调用时,您可以指定“完成”回调。在所有 ajax 调用和成功/错误回调之后调用此回调。

$.ajax({
    complete: function(){ alert('hello'); }
});

从 jQuery 1.5 开始,$.ajax 还返回一个 promise 对象。如果您使用的是更高版本的 jQuery,您也可以这样做:

var jqXhr = $.ajax({ ... your code }).always(function(){ alert('hello'); });
//Or
jqXhr.always(function(){ alert('hello'); });
于 2012-08-17T09:52:29.893 回答
0

You can set global event handlers for ajax requests in jQuery. You can add a dynamic property (say 'id') and identify a particular request.

$.ajaxSetup({
    success: function(data, textStatus, jqXHR) {
        console.log(jqXHR.id + " success");
    },
    error: function(jqXHR, textStatus, errorThrown) {
        console.log(jqXHR.id + " failed");
    },
    complete: function(jqXHR, textStatus, errorThrown) {
        console.log(jqXHR.id + " completed");
    }
});

$.ajax({
    url: "/"
}).id = "request1";

$.ajax({
    url: "/"
}).id = "request2";

$.ajax({
    url: "sdddqwdqwdqwd.com"
}).id = "request3";

demo : http://jsfiddle.net/diode/3fX8b/

于 2012-08-17T10:17:12.813 回答