Symfony2 FOSRestBundle ParamFetcher JSON错误

时间:2015-06-02 20:47:40

标签: json rest symfony fosrestbundle

我有一个带有FOSRestBundle的Symfony2设置,我正在使用ParamFetcher。

我现在有一条路线对它的参数有一些要求,我想向API用户显示错误消息,但是在我当前的设置中,错误消息没有显示在生产和开发中它们是广泛的方式。

参数要求

offset
Requirement \d+
Description Result offset
Default 0

limit
Requirement \d+
Description Result limit count
Default 100

注解:

/**
 * Get a list of users which can be limited to a certain result count and offset.
 *
 * Max 30 users per request allowed.
 *
 * @ApiDoc(
 *  resource=true,
 *  description="Load list of users",
 *  statusCodes={
 *      200="Returned when successful",
 *      400="Bad user input",
 *      500="In case of server error,"
 *  }
 * )
 *
 * @View()
 *
 * @param ParamFetcher $paramFetcher
 * @param int $offset integer offset (requires param_fetcher_listener: force)
 * @param int $limit integer result limit (requires param_fetcher_listener: force)
 * @QueryParam(name="offset", description="Result offset", default="0",
 *     requirements="\d+", strict=true, nullable=true)
 * @QueryParam(name="limit", description="Result limit count", default="30",
 *     requirements="\d+", strict=true, nullable=true)
 *
 * @return array response array
 */

以生产模式发出请求:

Request URL
GET /events.json?offset=strangeText&limit=huh!?
Response Headers [Expand] 
400 Bad Request

Date: Tue, 02 Jun 2015 20:45:15 GMT
Server: Apache/2
X-Powered-By: PHP/5.5.25
Vary: User-Agent
Content-Type: application/json
Cache-Control: no-cache
Connection: close
Content-Length: 47
Response Body [Raw]
▿{
  "error": ▿{
    "code": 400,
    "message": "Bad Request"
  }
}

我已经尝试将error_message添加到Param规则中,但这不会导致错误消息。

我该怎么做才能为API最终用户提供一条很好的错误消息?

1 个答案:

答案 0 :(得分:0)

我们通过实现ExceptionWrapperHandlerInterface来实现它,参见例如 https://symfony.com/doc/current/bundles/FOSRestBundle/2-the-view-layer.html#forms-and-views

namespace My\Bundle\Handler;

class MyExceptionWrapperHandler implements ExceptionWrapperHandlerInterface
{
/**
 * {@inheritdoc}
 */
public function wrap($data)
{
    return new MyExceptionWrapper($data);
}
}

您可以访问$ data中的大量信息。检查你的param验证例外。

我们不使用注释参数验证,但通过扩展ExceptionWrapper,我们可以例如在我们的代码中轻松实现类似的东西:

throw new HttpException( 400, 'My custom message' );