如何在Smarty中至少运行一次我的循环?
如果我使用for
而to
是0
我的循环永远不会被运行!
我有一个表单,我想至少显示一次,但如果fieldCounter
的值大于1,则循环应运行到fieldCounter
值。
{for $start=1 to $fieldCounter}
<input type="text" name="price{$start}" value="" />
{/for}
Smarty中有do {} while();
吗?
答案 0 :(得分:0)
您可以使用max()
:
{assign var=_to value=max($fieldCounter,1)}
{for $start=1 to $_to}
<input type="text" name="price{$start}" value="" />
{/for}
现在$_to
始终至少为1
答案 1 :(得分:0)
您也可以尝试smartys {forelse}。
{for $start=1 to $fieldCounter}
<input type="text" name="price{$start}" value="" />
{forelse}
<input type="text" name="price1" value="" />
{/for}