1

我正在寻找 FOSRestBundle 2.3 的配置路径。我有 Symfony 2.8。

我检查了 app/config/config.yml 但没有关于 fos_rest :/

当我输入 PHP app/console config:debug fos_rest 我得到了这个包的配置。

请帮忙 !

4

1 回答 1

-1

我有我的捆绑包的当前配置。

# FOSRest Configuration
fos_rest:
    body_listener: true
    format_listener:
        rules:
            - { path: '^/filemanager', priorities: ['html'], fallback_format: html, prefer_extension: false }
            - { path: '^/html', priorities: ['html'], fallback_format: html, prefer_extension: false }
            - { path: '^/', priorities: ['json'], fallback_format: json, prefer_extension: false }

param_fetcher_listener: true
view:
    view_response_listener: 'force'
    formats:
        json: true
exception:
    enabled: true
于 2018-08-09T00:04:06.243 回答