应用程序/控制台路由器:调试显示
get_test_helloworld GET /test/helloworld.{_format}
但是在点击这个网址时,什么都没有显示,并且在我得到的日志中
[2013-06-08 02:38:44] request.ERROR: Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET /test/helloworld" (uncaught exception)
at /home/user/Code/app/cache/prod/classes.php line 4261 [] []
我的测试控制器
<?php
namespace User\Bundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use FOS\RestBundle\View\View;
use FOS\RestBundle\Response\Codes;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
class TestController extends Controller
{
public function getTestHelloworldAction()
{
var_dump('hello world');die;
}
}
我正在使用 FosRest 捆绑包和 routing.yml 有
test:
type: rest
resource: User\Bundle\Controller\TestController
卡在这里很久了。任何想法这哪里出错了?