在另一个模板中嵌套闭包模板

发布于 2024-11-29 09:12:49 字数 55 浏览 0 评论 0原文

我确信应该有某种方法可以从模板内渲染另一个模板,这样我就不必复制粘贴类似的块。我只是无法弄清楚。

I'm sure there should be some way to render another template from within a template so I don't have to copy paste similar looking blocks. I'm just not able to figure it out.

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

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

发布评论

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

评论(2

骄傲 2024-12-06 09:12:49

我想通了。

{call .templateName /}

I figured it out.

{call .templateName /}
回心转意 2024-12-06 09:12:49

如果您需要传递参数,可以这样做:

{template .teasersblock}
  <div> 
      {call .teaser}
          {param url: 'https://example.com' /}
          {param headline: 'My headline example' /}
      {/call}
  </div>
{/template}

If you need to pass parameters your can do it this way:

{template .teasersblock}
  <div> 
      {call .teaser}
          {param url: 'https://example.com' /}
          {param headline: 'My headline example' /}
      {/call}
  </div>
{/template}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文