VIP福利
主页 > 建站问题 > dede:productimagelist标签增加autoindex递增自动编号

dede:productimagelist标签增加autoindex递增自动编号

我们在开发 织 梦模板 时,如果用到dede:productimagelist标签发现没有autoindex自动索引,使用[field:global.autoindex/]无法调用。岛主二次开发了一下,让dede:productimagelist标签支持autoindex。 1:打开/include/taglib/productimagelist.lib.php 找到 […]



我们在开发梦模板时,如果用到dede:productimagelist标签发现没有autoindex自动索引,使用[field:global.autoindex/]无法调用。岛主二次开发了一下,让dede:productimagelist标签支持autoindex。

1:打开/include/taglib/productimagelist.lib.php 找到:

foreach($images as $row)

在其上面增加如下代码

$GLOBALS['autoindex'] = 1;

//如果您希望autoindex 的起始值从0开始,把1修改成0即可。

继续找到如下代码:

$revalue .= $ctp->GetResult();

在其下面增加:

$GLOBALS['autoindex']++;

完成。

2:标签调用:

{dede:productimagelist} 

<span id="[field:global name=autoindex/]"><img src="[field:imgsrc/]"  /></span> 

{/dede:productimagelist} 

产生的结果:

<span id="0"><img src="1.jpg" /></span> 

<span id="1"><img src="2.jpg" /></span> 

<span id="2"><img src="3.jpg" /></span> 


或者使用:

 {dede:productimagelist}

 <div class="item [field:global runphp='yes' name=autoindex](@me < 2)?@me="active":@me="";[/field:global]"> <img src="[field:imgsrc/]"/> </div>

  {/dede:productimagelist}

产生的结果:

<div class="item active"> <img src="/1.jpg"/> </div>
<div class="item "> <img src="/2.jpg"/> </div>
<div class="item "> <img src="/3.jpg"/> </div>

说点什么吧
  • 全部评论(0
    还没有评论,快来抢沙发吧!