symfony2 twig path links您已请求不存在的服务""

时间:2016-01-11 21:29:21

标签: php symfony twig

我有这样的问题:

您已请求不存在的服务""

在vendor / symfony / symfony / src / Symfony / Component / DependencyInjection / Container.php第264行

我的代码

<p><a href="{{ path('maciej_test_about') }}">About</a></p>

DefaultController.php

<?php

namespace maciej\TestBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class DefaultController extends Controller
{
        public function aboutAction()
    {
        return $this->render('maciejTestBundle:about.html.twig');
    }
}

的routing.yml

maciej_test_about:
    path:     /about
    defaults: { _controller: maciejTestBundle:about }

问题是什么?

1 个答案:

答案 0 :(得分:0)

当我查看您的代码时,控制器中的模板路径是错误的。

试试这个!

return $this->render('maciejTestBundle:Default:about.html.twig');