跳到主要内容
版本:2.1.0-SNAPSHOT

文章分类集合

路由信息

  • 模板路径:/templates/categories.html
  • 访问路径:/categories

变量

categories

变量类型

List<#CategoryTreeVo>

示例

/templates/categories.html
<ul>
<li th:replace="~{modules/category-tree :: single(categories=${categories})}" />
</ul>
/templates/category-tree.html
<ul th:fragment="next (categories)">
<li th:fragment="single (categories)" th:each="category : ${categories}">
<a th:href="@{${category.status.permalink}}">
<span th:text="${category.spec.displayName}"> </span>
</a>
<th:block th:if="${not #lists.isEmpty(category.children)}">
<th:block th:replace="~{modules/category-tree :: next (categories=${category.children})}"></th:block>
</th:block>
</li>
</ul>

_templateId

变量值

categories

类型定义

CategoryTreeVo

CategoryTreeVo
{
"metadata": {
"name": "string",
"labels": {
"additionalProp1": "string"
},
"annotations": {
"additionalProp1": "string"
},
"creationTimestamp": "2022-11-20T14:18:49.230Z",
},
"spec": {
"displayName": "string",
"slug": "string",
"description": "string",
"cover": "string",
"template": "string",
"priority": 0,
"children": [
"string"
]
},
"status": {
"permalink": "string",
"postCount": 0,
"visiblePostCount": 0
},
"children": "List<#CategoryTreeVo>",
"parentName": "string",
"postCount": 0
}