刚刚使用symfony2创建了一个新项目并安装了FOSRestBundle。 控制器示例:
<?php
namespace ApiBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use FOS\RestBundle\Controller\FOSRestController;
class TestController extends FOSRestController
{
public function TestAction()
{
$data = array ('1', '2', '3', 'four'); // get data, in this case list of users.
$view = $this->view($data, 200)
->setTemplate("ApiBundle:Test:test.html.twig")
->setTemplateVar('test')
;
return $this->handleView($view);
}
}
收到错误消息:
You have requested a non-existent service "fos_rest.view_handler".
有没有人对此有所了解?
答案 0 :(得分:3)
在AppKernel
中,请确保您拥有以下内容:
// app/config/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new FOS\RestBundle\FOSRestBundle(),
);
}
你肯定忘记了this step。