3

我有两个几乎相同的 PHP 代理脚本,我通过几乎相同的 JS 调用它们。第一个在所有情况下都可以正常工作。

第二个(下面的代码)在 Firefox 和 Chrome 中的 localhost IIS 服务器上工作。在远程Glassfish Apache 服务器上,它在 Firefox 中运行,但status = 0在 Chrome 中返回空返回(在 v22 和 v26 中测试)。这两个 PHP 代理脚本实际上是相同的,并且下载的数据长度相似(在 1 到 4 MB 之间)。使用下面的 JS,else 和 onerror 警报都会被触发。

var dateQueryText = interviewDays[exitDay];
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
    if (xmlhttp.readyState == 4){
        if (xmlhttp.status == 200){
            var xmlDoc=xmlhttp.responseXML;
            processGPX(xmlDoc);
        }
        else{alert("Download of GPS data failed for date " + dateQueryText + " Status: " + xmlhttp.status);} 
    }
}
xmlhttp.onerror = function (e){alert("Error encountered and download of GPS data failed for date " + dateQueryText + " Status: " + xmlhttp.status);};

xmlhttp.open("POST","proxy2.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
params = ("case=" + caseID + "&gps=true" + "&date=" + dateQueryText);
xmlhttp.send(params);

我尝试了以下方法无济于事:

  • async&synchronous下载
  • 覆盖return类型,因为服务器并不总是能够理解 GPX(XML 格式的 GPS 数据){xmlhttp.overrideMimeType("text/xml");}
  • 提供 PHP 脚本的完整路径

什么可能导致 Chrome 出现问题?

编辑:这是失败的 PHP 请求的请求标头。没有收到回复。

Request URL: https://www.XXX.edu/AAA/BBB/CCC/proxy2.php

Request Headers
Cache-Control:no-cache
Content-type:application/x-www-form-urlencoded
Origin:https://www.XXX.edu
Pragma:no-cache
Referer:https://www.XXX.edu/AAA/BBB/CCC/exitgraphic.php?case=TESTCASE&instrument=0001&mode=TEST
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.4 (KHTML, like Gecko) Ubuntu/12.10 Chromium/22.0.1229.94 Chrome/22.0.1229.94 Safari/537.4

Form Data
case:TESTCASE
inst:0001
mode:TEST
gps:true
date:02222013
4

1 回答 1

0

您能否在激活 Chrome 的开发者工具(工具 --> 开发者工具)的情况下重试失败的请求,并在此处发布请求和响应的标头(在“网络”选项卡中),以及“控制台”选项卡中的任何错误消息?

于 2013-04-29T19:32:00.627 回答