如何获取http响应代码

时间:2011-10-11 19:08:40

标签: php javascript http

我有一个表格,它将值发送到变量$ _POST ['person_id'],$ _POST ['accident_loc'],$ _POST ['message']和$ _POST ['name']。

php文件将值作为记录插入数据库中,我没有任何问题。但是当表单没有向变量发送任何值时,我想返回一个错误。

我的意思是当我提交没有任何价值观的表格时。所以我发了一个if语句if(isset($_POST['person_id']) && isset($_POST['accident_loc']) && isset($_POST['message']) && isset($_POST['name'])){}如果这个语句失败,则调用函数“sendResponse()”。

现在我希望此文件将状态代码400返回到我的javascript文件,以便我可以编写一些错误条件。但是当我试图显示状态代码request.status的值时,它给了我0作为其值

下面是我的php文件..你能告诉我如何发送状态码吗?

    <?php
  //allowing access to the server which contains the following host-origin
if($_SERVER[HOST_ORIGIN]=="http:\\localhost")
    header('Access-Control-Allow-Origin:http:\\http:localhost');

function sendResponse(){
    header('HTTP/1.1 400 invalid request');
    header('Content-type: text/html');
    echo "invalid request";
}
if(isset($_POST['person_id']) && isset($_POST['accident_loc']) && isset($_POST['message']) && isset($_POST['name']))
{
    //php mysql database info
    require ("phpMysql_dbInfo.php");
    //getting the arguments from the url
    $person_id=$_POST['person_id'];
    $accident_loc=$_POST['accident_loc'];
    $message=$_POST['message'];
    $name=$_POST['name'];
    //connecting to the database
    $connection= mysql_connect($local_host,$username,$password);
    if(!$connection)
        die(mysql_error()."</br>");
    //selecting the db
    $select_db= mysql_select_db($database_name);
    if(!$select_db)
        die(mysql_error()."</br>");
    //inserting the values into the database
    $query= sprintf("insert into messages_to_people(name,accident_location,message,person_id)
                values('%s','%s','%s','%s')",
                mysql_real_escape_string($name),
                mysql_real_escape_string($accident_loc),
                mysql_real_escape_string($message),
                mysql_real_escape_string($person_id));
    $result=mysql_query($query);

    if(!$result)
        echo mysql_error().'</br>';
}
    else
sendResponse();
?>

更新 这是我的javascript

function downloadXml (url,params,callback) {
          var request= window.XMLHttpRequest ? new XMLHttpRequest(): new ActiveXObject('Microsoft.XMLHTTP');
          request.onreadystatechange= function(){
            if(request.readyState==4){
  //gives me a zero when i try to display it through alert
                alert(request.status);
                callback(request, request.status);
            }
          };
          request.open('POST',url,true);

            request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
                      request.send(params);

 }

如果您在我的javascript中发现任何问题请更正我

2 个答案:

答案 0 :(得分:2)

你做的几乎是正确的,这就是我能够在我身边做到的事情

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>

$(function(){

    alert('getting page');
    jqXHR = $.get(
        'index.php', 
        function(data){
            alert(data);
        }
    )
    .success(function(){ alert('second success'); })
    .error(function(){ alert('error'); })
    .complete(function(){ alert('complete'); });
});

</script>

在第二个文件中:

<?php header('HTTP/1.1 400 Bad Request'); ?>
Invalid request

所有这些都可以在jQuery网站上找到,只需根据您的需要调整它,使其在您的系统中运行:http://api.jquery.com/jQuery.get/

祝你好运

答案 1 :(得分:1)

而不是     SendResponse(); 只需发送正确的HTTP错误代码。

该行

 header('HTTP/1.1 400 Bad Request');

会为你做到这一点。有关所有有效状态代码的列表,请查看 http://en.wikipedia.org/wiki/List_of_HTTP_status_codes