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

項目地址: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>


<ul>

<#list commentList as comment>

<li>

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

</li>

</#list>

</ul>

${pager.formPageStr}

</@commentPage>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章