cheetah 中的变量嵌套模板

发布于 2024-10-14 00:50:36 字数 345 浏览 2 评论 0原文

我有一个基本模板,它根据传入的变量调用嵌套模板,例如。

page = 6

我想要的是调用一些 html,如下所示:

...
<div>
    #include "templates/_page${page}.tmpl"
</div>
...

正确的语法是什么?谢谢。

附言。我已经做到了:

#if $page.id == 6
    #include "templates/_page6.tmpl"
#end if

但欢迎任何改进

i have a base template that calls a nested template based on a variable passed in, eg.

page = 6

and what i want is to call some html as follows:

...
<div>
    #include "templates/_page${page}.tmpl"
</div>
...

what is the correct syntax for this? thanks.

PS. i have managed this:

#if $page.id == 6
    #include "templates/_page6.tmpl"
#end if

but any improvement welcome

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

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

发布评论

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

评论(1

等待圉鍢 2024-10-21 00:50:36

好吧,只需要睡几个晚上,但我得到了一个解决方案:

#include "templates/_page"+str($page)+".tmpl"

我稍微扩展了代码并且它可以工作。华泰

well, all it took was a few nights sleep but i got a solution:

#include "templates/_page"+str($page)+".tmpl"

i slightly expanded the code and it works. HTH

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