0

如果我有一个从远程服务器调用 php 文件但 php 文件不可用的代码,如何以及在哪里添加消息“服务器不可用”?这是我的代码:

<html>
<head>
    <script language="Javascript"> 
        function View(){
            if (window.XMLHttpRequest)
            {// code for IE7+, Firefox, Chrome, Opera, Safari
                xmlhttp=new XMLHttpRequest();
            }
            else
            {// code for IE6, IE5
                xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
            }
            xmlhttp.onreadystatechange=function()
            {
            if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
                document.getElementById("datatable").innerHTML=xmlhttp.responseText;    
            }
            xmlhttp.open("POST", "http://someremoteserver/somephpfile.php", true);
            xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
            xmlhttp.send(); 
        }
    </script>
</head>

<body onload="View();" >
    <div id="datatable" align="center"></div>
</body>
</html>
4

1 回答 1

3

您可以检测不同的HTTP 状态代码并根据响应执行某些操作。或者,如果状态不是 200,您可以只实现一个通用处理程序:

if (xmlhttp.readyState==4) {
    if (xmlhttp.status==200) {
        document.getElementById("datatable").innerHTML=xmlhttp.responseText;    
    } else if (xmlhttp.status == 503) { //specific error code
        alert('Sorry, this server is unavailable');
    } else { //generic error handler
        alert('There was an error with your request');
    }
}
于 2013-06-20T19:46:52.197 回答