我正在尝试设置Symfony3 microkelner以使用FOSRestBundle,我遇到了一些问题。
我想用作输入json或xml,也用作json或xml的输出。
我做了一些设置,但我遇到了错误:
ContainerBuilder.php第766行中的InvalidArgumentException: 服务定义“模板化”不存在。
和
ReplaceAliasByActualDefinitionPass.php第48行中的InvalidArgumentException: 无法用“fos_rest.templating”替换别名“模板”。
这就是我的config.yml的样子(带有模板和fos_rest的部分)
# Friends of Symfony REST
fos_rest:
disable_csrf_role: ROLE_API
view_response_listener: force
force_redirects:
html: true
param_fetcher_listener: true
body_listener:
decoders:
xml: fos_rest.decoder.xml
json: fos_rest.decoder.json
format_listener:
enabled: true
rules:
- { path: '^/', priorities: ['json', 'xml'], fallback_format: 'json', prefer_extension: false }
view:
formats:
xml: true
json: true
default_engine: json
failed_validation: HTTP_BAD_REQUEST
也
templating:
engines: ['twig']
....
# Twig Configuration
twig:
debug: "%kernel.debug%"
strict_variables: "%kernel.debug%"
exception_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'
在microkelner中,我使用了以下捆绑包:
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new FOS\RestBundle\FOSRestBundle(),
new JMS\SerializerBundle\JMSSerializerBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
);
if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
}
我使用的组件版本:
问题是如何正确设置以消除此错误并使Symfony3与microkelner一起使用FOSRestBundle?
谢谢。
答案 0 :(得分:0)
您确定您的配置是否正确?当我用以下容器转储容器时
$ bin/console debug:container | grep fos
我在其他许多方面看到了:
fos_rest.templating alias for "templating"
所以fos_rest.templating
只是templating
的别名,这可能就是为什么你可以将它替换为自身,因此也就是这两个错误。