文章分类
getByName(name)
categoryFinder.getByName(name)
描述
根据 metadata.name
获取文章分类。
参数
name:string
- 分 类的唯一标识metadata.name
。
返回值
示例
<div th:with="category = ${categoryFinder.getByName('category-foo')}">
<a th:href="@{${category.status.permalink}}" th:text="${category.spec.displayName}"></a>
</div>
getByNames(names)
categoryFinder.getByNames(names)
描述
根据一组 metadata.name
获取文章分类。
参数
names:List<string>
- 分类的唯一标识metadata.name
的集合。
返回值
List<#CategoryVo>
示例
<div th:with="categories = ${categoryFinder.getByNames(['category-foo', 'category-bar'])}">
<a th:each="category : ${categories}" th:href="@{${category.status.permalink}}" th:text="${category.spec.displayName}"></a>
</div>
list(page,size)
categoryFinder.list(page,size)
描述
根据分页参数获取分类列表。
参数
page:int
- 分页页码,从 1 开始size:int
- 分页条数
返回值
示例
<ul th:with="categories = ${categoryFinder.list(1,10)}">
<li th:each="category : ${categories.items}">
<a th:href="@{${category.status.permalink}}" th:text="${category.spec.displayName}"></a>
</li>
</ul>
listAll()
categoryFinder.listAll()
描述
获取所有文章分类。