我正在努力解决与FOSRestBundle相关的问题(版本0.13。*)
我有一些REST api会抛出一些例外,我猜没什么不寻常的。但是,尽管我做了特定的配置,允许在生成中将异常消息格式化在响应中(遵循我在此处找到的文档:https://github.com/FriendsOfSymfony/FOSRestBundle/blob/master/Resources/doc/4-exception-controller-support.md),JSON响应仍然非常空白......
以下示例:
http://host/app_dev.php/api/postcode/search?postcode=
结果:
HTTP 400: {"status":"error","status_code":400,"status_text":"Bad Request","current_content":"","message":"You must provide a postcode"}
BUT
http://host/api/postcode/search?postcode=
结果:
HTTP 400: []
我的API控制器如下所示:
/**
* Search post codes
*
* @param Request $request Request
* @param Promotion $promotion Promotion
*
* @Rest\View()
*
* @throws BadRequestHttpException
* @return array
*/
public function searchAction(Request $request, Promotion $promotion)
{
// Get post code
$postCode = $request->query->get('postcode');
if (!$postCode) {
throw new BadRequestHttpException('You must provide a postcode');
}
// SOME LOGIC HERE TO GET DATA
return $data;
}
并且fos_rest配置如下所示:
fos_rest:
routing_loader:
default_format: json
view:
mime_types:
json: ['application/json; charset=UTF-8']
formats:
json: true
view_response_listener: force
format_listener: false
access_denied_listener:
json: true
body_listener: true
exception:
messages:
Symfony\Component\HttpKernel\Exception\BadRequestHttpException: true
据我所知,fos_rest.exception.messages配置数组应该列出我想要在生产中对错误消息进行序列化的异常。正如您在控制器的代码中看到的,此响应包含将显示给客户端的已翻译错误消息。为什么忽略此配置? 我可以肯定地说,即使在prod环境中配置也是正确加载的,因为如果我在conf中错误地输入了类名,它就会失败并且#34;无法加载类"异常。
我错过了什么?提前感谢您提供的任何暗示......
答案 0 :(得分:6)
我有类似的问题,你的问题帮我解决了!
我知道它已经晚了但我发现清除prod
缓存有助于我解决这个问题。
这些也是我的设置:
fos_rest:
param_fetcher_listener: true
body_listener:
array_normalizer: fos_rest.normalizer.camel_keys
format_listener: true
view:
view_response_listener: 'force'
formats:
json: true
templating_formats:
html: true
force_redirects:
html: true
failed_validation: HTTP_BAD_REQUEST
default_engine: twig
routing_loader:
default_format: json
serializer:
serialize_null: true
access_denied_listener:
json: true
exception:
enabled: true
messages:
Symfony\Component\HttpKernel\Exception\BadRequestHttpException: true
我还想知道你是否总是必须明确地将这些例外添加到配置的codes
和messages
部分,除非你使用HttpException:
throw new HttpException(400, "New comment is not valid.");
答案 1 :(得分:0)
我还没有尝试过,但看起来你忘了这句话:
exception:
codes:
'Symfony\Component\Routing\Exception\ResourceNotFoundException': 404
试一试。
你有没有提到这个:
twig:
...
...
exception_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'