我有一个基本模板,它根据传入的变量调用嵌套模板,例如
page = 6
我想要的是调用一些html如下:
...
<div>
#include "templates/_page${page}.tmpl"
</div>
...
这是什么语法?感谢。
PS。我管理过这个:
#if $page.id == 6
#include "templates/_page6.tmpl"
#end if
但欢迎任何改进
答案 0 :(得分:2)
#include "templates/_page"+str($page)+".tmpl"
我略微扩展了代码并且它有效。 HTH