輸出純文本字段:[[${cn.channelName}]] 或者 th:text="${cn.channelName}"
循環遍曆文章 th:each="no : ${cms.getContentList('channelId:' + channel.channelId + ',count:6,order:1')}" order 排序 count 條數 channelId 欄目id
輸出自定義字段文本 [[${cn.attr['屬性id']}]]
輸出自定義字段圖片 單圖[[${cn.attr['屬性id'][0].url}]] 多圖th:each="a : ${content.attr['屬性id']}" th:src="${a.url}"
引入靜态資源标簽 例如:<link rel="stylesheet" th:href="${ctx}+'/css/fullpage.css'">
引入頭部和尾部頁面(miàn) <th:block th:include="${res}+'/includes/header'" />
日期格式處理 ${#dates.format(日期字段releaseTime, 'yyyy-MM-dd')}
跳轉事(shì)件處理 th:onclick="location.href='[(${a.url})]'"
輸出html文本語法 [(${content.text})]
聲明變量 th:with="p = ${cms.getContent('id:'+content.id+',order:1')}"
獲取數組長(cháng)度 ${#arrays.length(d)}
遍曆友情鏈接 cms.getLinksList th:each="no : ${cms.getLinksList(linkSortId: 友情鏈接分類id)}"
js代碼中嵌入标簽:
<script th:inline="javascript">
[# th:each="item, index: ${cms.getContentList('channelId:' + channel.channelId + ',count:6,order:1')}"]
</script>
面(miàn)包屑導航:
<th:block th:each="cn,CnAttr : ${cms.getParentChannelList(channel.channelId)}">
<a th:href="${cn.url}">[[${cn.channelName}]]</a>
</th:block>