0

我目前正在使用 Slim 框架开发 REST API。
为了测试我的 API,我正在使用邮递员,但我无法检索 slim 方法发送的状态码:

$response->withJson($data, $status, $encodingOptions)

$slimApp->post('/v1/users', function(Request $request, Response $response) {
    echo $response->withJson(['data' => 'something'], 400);
});

我将状态代码设置为“400”,但邮递员一直说这是“200”状态。

slim发送的标头是:

HTTP/1.1 400 错误请求
内容类型:application/json;
字符集=utf-8

事实是,我可以通过header手动验证代码状态,但我想通过postman的collection runner来验证。

您对这种邮递员行为有任何想法吗?

4

1 回答 1

0

与slim github 存储库中的此问题相关,您必须返回响应,而不是回显它:

$slimApp->post('/v1/users', function(Request $request, Response $response) {
    return $response->withJson(['data' => 'something'], 400);
});
于 2017-08-01T17:02:13.037 回答