私のシナリオ:
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{foreach from=$users item=user}
<tr>
<td>{$user.name}</td>
<td>{$user.email}</td>
</tr>
{foreachelse}
There are no users....
{/foreach}
</tbody>
</table>
ユーザーがいない場合、醜いテーブルがあるので、次を追加します。
{if $users|count > 0}
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{foreach from=$users item=user}
<tr>
<td>{$user.name}</td>
<td>{$user.email}</td>
</tr>
{foreachelse}
There are no users....
{/foreach}
</tbody>
</table>
{else}
There are no users....
{/if}
しかし今、私の{foreachelse}
は役に立たない。
だから私はその部分を削除し、それは役に立たない{foreachelse} There are no users....
と結論付けます.{foreachelse}
この問題は 、 などで発生して<table>
います<ol>
。<ul>
誰かが解決策を持っているので、私は使用できます{foreachelse}
か?
ありがとう!