Php FOSRestBundle-仅允许json+;xml,如果没有其他请求,则默认为json

Php FOSRestBundle-仅允许json+;xml,如果没有其他请求,则默认为json,php,symfony,fosrestbundle,Php,Symfony,Fosrestbundle,有人可以给我看一个FOSRestBundle的参考配置,它只允许json+xml,如果没有设置“Accepted”或“Content Type”,它将默认为json 我的目标是放弃模板html支持和所有其他不必要的格式(在我的例子中) 提前谢谢 明白了 # app/config/config.yml # ... fos_rest: routing_loader: default_format: json include_format: true p

有人可以给我看一个FOSRestBundle的参考配置,它只允许json+xml,如果没有设置“Accepted”或“Content Type”,它将默认为json

我的目标是放弃模板html支持和所有其他不必要的格式(在我的例子中)

提前谢谢

明白了

# app/config/config.yml
# ...
fos_rest:
    routing_loader:
        default_format: json
        include_format: true
    param_fetcher_listener: force
    body_listener: true
    allowed_methods_listener: true
    view:
        view_response_listener: 'force'
        formats:
            json: true
            xml: true
    format_listener:
        rules:
            - { path: '^/api', priorities: ['json', 'xml'], fallback_format: json, prefer_extension: true }

sensio_framework_extra:
    view:    { annotations: false }
    router:  { annotations: true }
# ...