在嵌入控制器中获取请求参数

时间:2013-09-26 19:09:20

标签: php symfony

在Symfony1中,我可以:

blog:
  url:   /blog/slug
  param: { module: blog, action: index }

在动作/控制器中我可以使用:$ request-> getParameter('slug');

在Symfony2中:

blog:
    path:      /blog/{slug}
    defaults:  { _controller: AcmeBlogBundle:Blog:show }

我创建了与Symfony1相同的“组件” - http://symfony.com/doc/current/book/templating.html#templating-embedding-controller

如何嵌入控制器?我试过了:

$request->query->get('foo');
$request->request->get('bar');

但仍然返回null。在AcmeBlogBu​​ndle:博客:显示控制器工作正常。

1 个答案:

答案 0 :(得分:2)

param转换器将使用路由中的字符串填充参数。所以这就是你的方法的样子。

class BlogController extends Controller {
    public function showAction($slug) {
        // $slug will contain the value of the string from the route
    }
}

因此,如果您想将其嵌入到树枝模板中,它将如下所示:

{{ render( controller('AcmeBlogBundle:Blog:show', {'slug': 'this-is-the-slug' })) }}

或来自其他控制器

$this->render('AcmeBlogBundle:Blog:show.html.twig', array('slug' => 'this-is-the-slug'));