每个规则分别有Symfony 4.2 fos_rest异常

时间:2019-04-03 08:54:22

标签: symfony symfony-4.2

我有两个规则。一个规则与API端点有关,而另一条规则则与其他所有东西有关。

fos_rest:
       param_fetcher_listener: force
       view:
              view_response_listener:  true
       exception:
              exception_controller: 'fos_rest.exception.controller:showAction'
              codes:
                     Doctrine\ORM\EntityNotFoundException: 404
       format_listener:
              rules:
                     - { path: ^/api, prefer_extension: true, fallback_format: json, priorities: [ json ]}
                     - { path: '^/', priorities: [ 'html', '*/*'], fallback_format: ~, prefer_extension: true }

我希望仅将“ exception_controller”应用于REST API规则。 现在,这两个规则都适用。

预先感谢您的回答。

0 个答案:

没有答案