0

在我的应用程序中,我需要定期发出跨域 HTTP POST 请求以从服务器接收最新数据(定期轮询)。该应用程序在 Chrome 中时无法在 IE8 中运行。所以我决定用 Wireshark 调试它:

我在 IE8 和 Chrome 中执行了 2 个等效代码。我用 Wireshark 监控我的网络。wireshark 过滤器是:

http.request.full_uri == "http://www.andlabs.net/html5/uCOR.php"   

我注意到 IE8 只发送一次请求并为以下调用返回相同的缓存响应。另一方面,Chrome 每次都会发送一个新请求。

我用于 IE8 的代码:

var cor = new XDomainRequest();
cor.onload = function() { alert(cor.responseText);}
cor.open('POST', 'http://www.andlabs.net/html5/uCOR.php');
cor.send();

我用于 Chrome 的代码:

var cor = new XMLHttpRequest();
cor.onload = function() { alert(cor.responseText);}
cor.open('POST', 'http://www.andlabs.net/html5/uCOR.php');
cor.send();

为了防止在 IE8 中缓存响应,我尝试了以下代码并且它有效:

var cor = new XDomainRequest();
cor.onload = function() { alert(cor.responseText);}
cor.open('POST', 'http://www.andlabs.net/html5/uCOR.php');
cor.send(''+new Date());

为什么 IE8 会以这种方式运行,有什么方法可以以与我不同的方式解决这个问题?请注意,我不能对 GET 请求使用相同的技巧。

顺便说一下,IE的请求和响应如下:

要求:

POST /html5/uCOR.php HTTP/1.1
Accept: */*
Origin: http://jsbin.com
Accept-Language: en-US
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
Host: www.andlabs.net
Content-Length: 0
Connection: Keep-Alive
Cache-Control: no-cache

回复:

HTTP/1.1 200 OK
Content-Type: text/html
Server: Microsoft-IIS/7.0
Access-Control-Allow-Origin: *
X-Powered-By: ASP.NET
Date: Tue, 17 Jan 2012 21:41:39 GMT
Content-Length: 180

This is a page from www.andlabs.net which is accessible from any website through Cross Origin Requests<br>This page contains the following header:<br>Access-Control-Allow-Origin: *
4

1 回答 1

2

看起来响应中没有任何缓存标头,因此浏览器的行为可能会有所不同。您能否将以下标头添加到响应中:Cache-Control: no-cache

于 2012-01-17T22:12:23.330 回答