博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DedeCms autoindex和itemindex 用法说明
阅读量:6293 次
发布时间:2019-06-22

本文共 2649 字,大约阅读时间需要 8 分钟。

hot3.png

autoindex,itemindex 从0到1开始的办法

1
2
3
[field:globalname=autoindex runphp="yes"]@me=@me+1;[/field:global] 
     
{dede:globalname=itemindex runphp="yes"}@me=@me+1;{/dede:global}

autoindex   itemindex 的使用心得区别  

channelartlist 标签下使用 {dede:global name='itemindex' runphp='yes'} ;{/dede:global}

自增1

arclist            标签下使用 [field:global.autoindex/] 默认从1开始

channel         标签下使用 [field:global.autoindex/] 默认从0开始
channelartlist 标签下使用 {dede:global.itemindex/}  默认从1开始

 

arclist  从0开始[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]

channel  从1开始[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global][field:typename/]

channelartlist  从0开始{dede:global name=itemindex runphp='yes'}@me=@me-1;{/dede:global}

 

<div id="h_pd_lm_{dede:global.itemindex/}" {dede:global name='itemindex' runphp='yes'}@me=(@me==1)?'':'style="display:none;"';{/dede:global} class="pd2_lmc_l1">

 

channelartlist实例

1
2
3
4
5
{dede:channelartlist  notypeid='123,124,146,147'} 
     <aclass="pd2_lmt{dede:global name=itemindex runphp='yes'}@me=(@me==1)?'1':'3';{/dede:global}"οnmοuseοver="showitem2({dede:global name=itemindex runphp='yes'}@me=@me-1;{/dede:global},'pd_lm','h_pd_lm_','pd2_lmt');"href='{dede:field name='typeurl'/}'> 
{dede:php}if($refObj->Fields['ispart']){echo$refObj->Fields['typename'];}{/dede:php} 
     </a> 
{/dede:channelartlist}

标签下使用 [field:global name=autoindex/]  

channel实例

1
2
3
{dede:channel titlelen='32'} 
        <li [field:globalname='autoindex'runphp='yes']if(@me%2==0){@me='class="rr"';}else{@me='';}[/field:global] ><h3><a href='[field:typelink/]'>[field:typename/]</a></h3></li> 
{/dede:channel}

在arclist中使用autoindex runphp 时用这种方式:

1
2
3
{dede:arclist titlelen='22'row='4'flag='c'orderby='id'} 
      <a href="[field:arcurl /]"target="_blank">[field:title /]</a> 
       [field:globalname='autoindex'runphp='yes']if(@me==2){@me="<br />";}else{@me=' ';}[/field:global]{/dede:arclist}

自增1

 [field:global.autoindex/]

arclist实例

1
2
3
4
5
{dede:arclist channelid=17 row=6 orderby=pubdate titlelen=40 addfields='docphoto,docjob,doctec'typeid='123,136,146,155,172,182,202'} 
                <div id="h_nrr_zj_[field:global.autoindex/]"class="nrr_zjl"[field:globalname='autoindex'runphp='yes']if(@me==1){@me="";}else{@me='style="display:none;"';}[/field:global] > 
                <div><a href="[field:arcurl/]"title="[field:fulltitle/]"target="_blank"><img src="[field:litpic/]"alt="[field:fulltitle/]"/></a></div> 
</div> 
{/dede:arclist}

如何自由定义 开始的数字 

autoindex/itemindex 可以使用 @me+1;实现由指定数字开始

遇到类似的问题做下这个笔记,在用到的时候可以灵活发挥!

list 标签下试用autoindex

1
2
3
{dede:list pagesize='40'orderby='id'} 
[field:globalname='autoindex'runphp='yes']if(@me%10==0){@me="test";}else{@me='';}[/field:global]  
{/dede:list}

转载于:https://my.oschina.net/u/146563/blog/111289

你可能感兴趣的文章
Android开发 - 掌握ConstraintLayout(九)分组(Group)
查看>>
springboot+logback日志异步数据库
查看>>
Typescript教程之函数
查看>>
Android 高效安全加载图片
查看>>
vue中数组变动不被监测问题
查看>>
3.31
查看>>
类对象定义 二
查看>>
收费视频网站Netflix:用户到底想要“点”什么?
查看>>
MacOS High Sierra 12 13系统转dmg格式
查看>>
关于再次查看已做的多选题状态逻辑问题
查看>>
动态下拉菜单,非hover
查看>>
政府安全资讯精选 2017年第十六期 工信部发布关于规范互联网信息服务使用域名的通知;俄罗斯拟建立备用DNS;Google打击安卓应用在未经同意情况下收集个人信...
查看>>
简单易懂的谈谈 javascript 中的继承
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>