项目地址:http://www.freeteam.cn/

commentPage

根据参数提取评论对象。

参数

说明

siteid

站点id

objtype

评论对象类型

objid

评论对象id

membername

会员名称

isanonymous

是否匿名 1是 0否

order

排序类型  

1发表时间降序(默认)

2发表时间升序


state

审核状态 空字符串表示所有(默认) 1已审核 0未审核

cache

是否使用缓存,默认为false

page

当前第几页,默认1

action

分页跳转页面

orderby

从FreeCMS 2.4开始支持

排序sql,设置后order属性失效



返回值

说明

commentList

评论对象列表,类型为List<数据对象comment>

pager

分页对象


示例1

分页提取评论,每页显示10条。

<@commentPage  num='10' page='1' objtype="info" objid="${currInfo.id}" action='${contextPath}templetPro.do?siteid=${site.id}&templetPath=comment.html';commentList,pager>


    <#list commentList as comment>

  • 分页:${comment.content!""}

${pager.formPageStr}