在我的客户端代码中,我正在做一个$.ajax调用.本帖可能需要一段时间才能回复.我看到的是在一段时间后再次发出请求.
我以为这是我的$.ajax调用再次发送,但无论我在服务器上看到POST请求多少次,我只看到beforeSend回调一次.我相当确定我的代码不是多次发送,所以我认为它的浏览器重试?
我知道我的服务器得到的请求多一次,因为我跑了Wireshark,可以看到多次的帖子请求.所以我的假设是这与HTTP有关?即,如果在一定时间内没有收到回复,那么请求是否重新发送?
以下是我下面的电话示例.
$.ajax({ async: false,type: 'POST',url: '<%= url_for('importDevice') %>',data: { device: val },retryLimit: 0,//callback success: function(data) { alert('calling import'); if ( data == 'nomaster') { // Display a warning toast,with a title toastr.warning('You must set the Master Key first!','Warning'); $.ismasterset = false; //reset the form contents after added } else { $("div#content").html(data); } },beforeSend: function(){ alert('in before send'); } });
这是所有相关代码,“retryLimit”没有被使用,我只是没有从我的代码中删除它,是的,我把它放在之前的问题.
EDITED与客户端和服务器的输出.
好的,我安装了“Firefox的Live Http标头”.
'#request# POST http://testhost/importdevice'
我在’标题’部分看不到POST,也许是因为没有回应?
在我的网络服务器,虽然我看到2个电话约22秒.
[Sun Jan 13 03:08:45 2013] [debug] POST /importdevice (Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20100101 Firefox/17.0). [Sun Jan 13 03:09:07 2013] [debug] POST /importdevice (Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20100101 Firefox/17.0).
我也可以在wirehark看到这些相同的电话
这就是为什么我在询问如果一个响应没有回来,尝试重新发送请求是正常的行为,以类似的方式与TCP握手和SYN重传.
更新
它似乎与我的Ajax调用无关.如果我创建一个简单的HREF的按钮.
即
<a href="/importdevice?device=serverA" class="btn btn-success">TestDirect</a>
然后在我的“Live HTTP标头输出”中我只得到一个实例.
#request# GET http://172.16.118.15/importdevice?device=serverA
但是再次在我的服务器日志中我得到.
[Sun Jan 13 03:20:25 2013] [debug] GET /importdevice (Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20100101 Firefox/17.0). [Sun Jan 13 03:20:48 2013] [debug] GET /importdevice (Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20100101 Firefox/17.0).
在服务器上的wirehark中,我看到它也是两次,并且如预期的那样,我的服务器代码也被称为两次,这对我来说真是令人困惑.
解决方法
http://geek.starbean.net/?p=393
If an HTTP/1.1 client sends a request which includes a request body,but which does not include an Expect request-header field with the “100-continue” expectation,and if the client is not directly connected to an HTTP/1.1 origin server,and if the client sees the connection close before receiving any status from the server,the client SHOULD retry the request.
确保您设计您的网络应用程序以容忍这些额外的请求.如果你想要ajax请求只做一些事情,比如写一些数据库,那么你需要设计一个幂等的请求.见:What is an idempotent operation?
此外,这突出了GET和POST操作之间的差异:
http://www.cs.tut.fi/~jkorpela/forms/methods.html
作为一般设计实践:-GET操作应设计为幂等-POST操作应用于写入数据库等.