我想将模板动态插入基本模板:
我有三个tpl
,名称为test.tpl
,test01.tpl
,test02.tpl
:
test.tpl
的代码:
<html>
<head>
<title>{$title}</title>
</head>
{if $v eq 1}
// there I want it to be test01.tpl, how to implements this?
{elseif $v eq 2}
// there I want it to be test02.tpl
{/if}
</body>
</html>
答案 0 :(得分:1)
看看这个:
SomeMainClass
{include}标签用于在当前模板中包含其他模板。
答案 1 :(得分:1)
<html>
<head>
<title>{$title}</title>
</head>
<body>
{if $v eq 1}
{include file="test01.tpl"}
{elseif $v eq 2}
{include file="test02.tpl"}
{/if}
</body>
</html>
条件成立时,此 {include} 标签将包含目标文件。
答案 2 :(得分:0)