为什么foreach只能取出3行记录?

2016-07-07 16:09 来源:www.chinab4c.com 作者:ecshop专家



我想取出新产品,使用了下面的方式,为什么在前台模板里只显示3个记录?(我在后台把商品设置了10个新品的呀)
  1. <!--{foreach from=$new_goods item=goods name=goods}-->
  2. <li>
  3. <div class="goodsbox_index">
  4. <div class="imgbox"><a href="{$goods.url}"><img src="{$goods.thumb}" alt="{$goods.name|escape:html}" /></a></div>
  5. <a href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.short_style_name}</a><br />
  6. <!-- {if $goods.promote_price neq ""} -->
  7. <b class="shop">{$goods.promote_price}</b><br />
  8. <!-- {else}-->
  9. <b class="shop">{$goods.shop_price}</b><br />
  10. <!--{/if}-->
  11. </div>
  12. </li>
  13. <!--{/foreach}-->
复制代码

回答:
这个要在后台模板设置 设置新品显示的个数

这个要在后台模板设置 设置新品显示的个数
77shop 发表于 2010-9-15 10:21



谢谢啦!