Count(计数)
Syntax
TAXONOMY.Count(分类计数) TERM(术语)
Returns
int(整数)
Taxonomy
对象上的 Count
方法返回给定术语被分配的有权重页面的数量。
在我们使用Taxonomy
方法之前,需要获取一个Taxonomy
对象。
获取一个Taxonomy对象
考虑到以下的站点配置:
hugo.
taxonomies:
author: authors
genre: genres
[taxonomies]
author = 'authors'
genre = 'genres'
{
"taxonomies": {
"author": "authors",
"genre": "genres"
}
}
以及以下的内容结构:
content/
├── books/
│ ├── and-then-there-were-none.md --> genres: suspense
│ ├── death-on-the-nile.md --> genres: suspense
│ └── jamaica-inn.md --> genres: suspense, romance
│ └── pride-and-prejudice.md --> genres: romance
└── _index.md
要在任何模板中获取“genres”分类法对象,可以在Site
对象上使用Taxonomies
方法。
{{ $taxonomyObject := .Site.Taxonomies.genres }}
要在渲染其页面时捕获“genres”分类法对象,可以在页面的Data
对象上使用Terms
方法:
layouts/_default/taxonomy.html
{{ $taxonomyObject := .Data.Terms }}
要检查数据结构:
<pre>{{ jsonify (dict "indent" " ") $taxonomyObject }}</pre>
虽然Alphabetical
和ByCount
方法在对分类法进行浏览时提供了更好的数据结构,但您可以直接从Taxonomy
对象中渲染按项加权的页面:
{{ range $term, $weightedPages := $taxonomyObject }}
<h2><a href="{{ .Page.RelPermalink }}">{{ .Page.LinkTitle }}</a></h2>
<ul>
{{ range $weightedPages }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
{{ end }}
在上面的例子中,第一个锚元素是指向项页面的链接。
计算有权重页面的数量
现在我们已经捕获了 “genres(类型)” 的 Taxonomy
对象,让我们计算给定术语 “suspense(悬疑)” 被分配的有权重页面的数量:
{{ $taxonomyObject.Count "suspense" }} → 3