我对Symfony比较陌生,遇到了一些麻烦。 我正在尝试在调用端点时在所调用的方法中键入提示自定义RequestValidator类。
使用Symfony 3.4
但是,出现以下错误:
控制器“ ApiBundle \ Endpoints \ Healthcheck \ v1 \ Index :: check()”要求您为“ $ request”参数提供一个值。该参数可以为空,并且没有提供空值,没有提供默认值,或者因为此参数之后有一个非可选参数。
这是我的设置:
services.yml文件
...
_defaults:
autowire: true
autoconfigure: true
...
routing.yml
api.Healthcheck:
path: /healthcheck
controller: ApiBundle\Endpoints\Healthcheck\v1\Index::check
defaults: { _format: json }
methods:
- GET
然后-在Index类中,我有以下内容:
<?php
namespace ApiBundle\Endpoints\Healthcheck\v1;
use ApiBundle\Responses\ApiResponse;
class Index extends ApiResponse
{
public function check(HealthcheckRequest $request) {
var_dump($request);die;
}
}
当我调试:自动装配时,我在列表中看到我的HealthcheckRequest。
此外,当我做同样的事情并尝试在Index类的构造函数中键入提示时,一切都正常。
最后,如果我尝试在check()方法中键入提示Symfony / HttpFoundation / Request,它将正确地实例化它。
总结:
不起作用:
工作:
我做错什么了吗?任何帮助表示赞赏。
答案 0 :(得分:0)
它已在Symfony 4中作为services.yaml的一部分,但在版本3.3中引入,因此这可能会有所帮助:
# controllers are imported separately to make sure services can be injected
# as action arguments even if you don't extend any base controller class
ApiBundle\Endpoints\:
resource: '../../Endpoints/*'
tags: ['controller.service_arguments']