在树枝模板中嵌入服务

发布于 2024-12-18 00:11:36 字数 268 浏览 0 评论 0原文

我使用控制器作为服务,并尝试使用以下语法将这些控制器嵌入到树枝模板中:

{% render 'my_controller:thisAction' %}
{% render 'my_controller2:this2Action' %}
{% render 'my_controller3:this3Action' %}

问题是,只有第一个渲染语句能够渲染模板,而无法正确解析,而以下渲染语句则不能。

对于为什么会出现这个问题有什么建议吗?

I am using controllers as services and try to embed those controllers in the twig template using the following syntax:

{% render 'my_controller:thisAction' %}
{% render 'my_controller2:this2Action' %}
{% render 'my_controller3:this3Action' %}

The problem is that instead of getting parsed correctly, only the first render statement is able to render the template and the following ones are not.

Any suggestions why this problem is occuring ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

药祭#氼 2024-12-25 00:11:36

只需确保遵守命名约定即可。而且你不需要你的控制器成为服务。控制器旨在获取请求并返回响应

假设您有一个名为 Default 的控制器。

namespace Renoir\SiteBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;

class DefaultController extends Controller
{

    // ...

    public function randomNameRenderAction()
    {
       // Do some logic
    }

}

在视图中,您可以使用以下方式调用

{% render 'RenoirSiteBundle:Default:randomNameRender' %}

Just make sure the naming convention is respected. And you do not need your controller to be services. Controllers are meant to grab a Request and return a Response.

Imagine you have a Controller called Default.

namespace Renoir\SiteBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;

class DefaultController extends Controller
{

    // ...

    public function randomNameRenderAction()
    {
       // Do some logic
    }

}

In the view you could call by using

{% render 'RenoirSiteBundle:Default:randomNameRender' %}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文