处理预期和意外的http请求失败

时间:2016-02-29 18:33:18

标签: javascript php angularjs http-status-code-404

我正在构建http请求< - >使用angularJSPHP的回复链接。

  • 在服务器端有PHP服务。
  • 在客户端,有JSangularJS)服务。

当我发送和接收数据时,代码工作正常。但现在我想处理服务器出现问题的情况。也就是说,我想从服务器返回出现错误的状态代码,甚至是自定义错误消息。

以下是我用来发送数据的代码:

$http({
    method: 'POST',
    url: 'http://' + remoteIP + ':1234/test/getCM2.php',
    dataType: 'json',
    data: { test: 'abc'},
    headers: { 'Content-Type': 'application/json; charset=UTF-8' }
}).success(function (data, status, headers, config) {
    if (typeof data === 'object') {
        return data;
    } else {
        return $q.reject(data);
    }
}).error(function (data, status, headers, config) {
    return $q.reject(data);
});

数据作为JSON对象发送。在服务器端,我处理数据:

<?php
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Headers: origin, content-type, accept, authorization");
header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS, HEAD");
header('Content-Type: application/json');

$postdata = file_get_contents("php://input");
$request = json_decode($postdata, true);
$test = $request['test'];

if (empty($test)) {
    // what to do here????
    // bad code ahead:
    http_response_code(401);
}

try {

    echo json_encode([
        "outData" => "def"
    ]);
} catch(Exception $e) {
    // what to do here????
    // bad code ahead:
    $output = [
        'error'   => $e->getMessage()
    ];
    echo(json_encode($output));
}

?>

PHP我试图将HTTP响应状态设置如下:

http_response_code(401);

当我在Chrome调试器中检查rsponse时,它完美无缺:

enter image description here

但在angularjs我得到的是状态= -1

enter image description here

通常在发送正确的JSON请求时(不设置http_response_code(401);),有2个请求正在进行,首先是OPTION,然后是POST:

enter image description here

因此,似乎OPTION请求在开头时收到了HTTP 401错误消息,但angularJS从未看到此错误消息,因为它只是在寻找{{1}响应。因此,我看到的状态是POST,而不是-1401甚至没有成就。

我需要回复客户端并显示错误消息,但我需要一个错误,这意味着什么,而不是POST。处理这种情况最合适的方法是什么?

-1状态问题相关的类似主题:stackoverflow。不幸的是,它无助于解决问题。

1 个答案:

答案 0 :(得分:1)

您只需设置标题并在请求方法为OPTIONS时退出。

这样的东西
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
     exit;
}
// only enter this part for POST
$postdata = file_get_contents("php://input");

此处的CORS方法可能有助于https://stackoverflow.com/a/9866124/1175966