だから、ここに私が構築したばかりのコントローラーがあります:
namespace MDP\API\ImageBundle\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class RetrieverController {
private $jsonResponse;
private $request;
public function __construct(JsonResponse $jsonResponse, Request $request) {
$this->jsonResponse = $jsonResponse;
$this->request = $request;
}
/**
* @Route("/image/{amount}")
* @Template("MDPAPIImageBundle:Retriever:index.json.twig")
*/
public function retrieve($amount)
{
}
}
DependencyInjection を使用するために、このコントローラーをサービスとして機能させたいと考えています。だから、ここに私のservices.xml
ファイルがあります:
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="mdpapi_image.json_response" class="Symfony\Component\HttpFoundation\JsonResponse" />
<service id="mdpapi_image.request" class="Symfony\Component\HttpFoundation\Request" />
<service id="mdpapi_image.controller.retriever" class="MDP\API\ImageBundle\Controller\RetrieverController">
<argument type="service" id="mdpapi_image.json_response" />
<argument type="service" id="mdpapi_image.request" />
</service>
</services>
</container>
ただし、コントローラーを実行しようとすると、常に次の例外が発生します。
キャッチ可能な致命的なエラー: MDP\API\ImageBundle\Controller\RetrieverController::__construct() に渡される引数 1 は、Symfony\Component\HttpFoundation\JsonResponse のインスタンスである必要があります。指定はなく、/home/steve/projects/APIs/app で呼び出されます/cache/dev/jms_diextra/controller_injectors/MDPAPIImageBundleControllerRetrieverController.php の 13 行目で、/home/steve/projects/ImageAPI/ImageBundle/Controller/RetrieverController.php の 13 行目に定義されています
私が開発モードにいるとき、Symfony がキャッシュされたファイルにこのファイルを生成していることがわかります...
class RetrieverController__JMSInjector
{
public static function inject($container) {
$instance = new \MDP\API\ImageBundle\Controller\RetrieverController();
return $instance;
}
}
ファイルで指定されているように、引数がコントローラーに正しく追加されるようにするにはどうすればよいservices.xml
ですか?