開源 java CMS - FreeCMS2.8 自定義標籤 commentPage

項目地址:http://www.freeteam.cn/html

​​​​​​​commentPagesql

根據參數提取評論對象。緩存

參數spa

說明orm

siteidhtm

站點id對象

objtype排序

評論對象類型ci

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>

 

<ul>

<#list commentList as comment>

<li>

分頁:${comment.content!""}

</li>

</#list>

</ul>

${pager.formPageStr}

</@commentPage>

相關文章
相關標籤/搜索