InSection
Syntax
PAGE.InSection SECTION
Returns
bool
InSection
方法用于页面对象,判断给定页面是否在给定的部分中。注意,当将页面与兄弟页面进行比较时,该方法返回 true
。
一个 section 是最高级别的内容目录,或者是带有索引文件 index.md 的任意内容目录。
以下是内容结构示例:
content/
├── auctions/
│ ├── 2023-11/
│ │ ├── _index.md
│ │ ├── auction-1.md
│ │ └── auction-2.md
│ ├── 2023-12/
│ │ ├── _index.md
│ │ ├── auction-3.md
│ │ └── auction-4.md
│ ├── _index.md
│ ├── bidding.md
│ └── payment.md
└── _index.md
当渲染 “auction-1” 页面时:
{{ with .Site.GetPage "/" }}
{{ $.InSection . }} → false
{{ end }}
{{ with .Site.GetPage "/auctions" }}
{{ $.InSection . }} → false
{{ end }}
{{ with .Site.GetPage "/auctions/2023-11" }}
{{ $.InSection . }} → true
{{ end }}
{{ with .Site.GetPage "/auctions/2023-11/auction-2" }}
{{ $.InSection . }} → true
{{ end }}
在上面的示例中,我们使用 with
语句进行防御性编码,如果页面不存在,则不返回任何内容。通过添加 else
子句,我们可以进行一些错误报告:
{{ $path := "/auctions/2023-11" }}
{{ with .Site.GetPage $path }}
{{ $.InSection . }} → true
{{ else }}
{{ errorf "无法找到路径为 %s 的部分" $path }}
{{ end }}
理解上下文
在 with
块中,上下文(.
)是部分的 Page
对象,而不是传递给模板的 Page
对象。如果我们使用以下语法:
{{ with .Site.GetPage "/auctions" }}
{{ .InSection . }} → true
{{ end }}
当渲染 “auction-1” 页面时,结果将是错误的,因为我们将部分页面与自身进行比较。
{{ with .Site.GetPage "/auctions" }}
{{ $.InSection . }} → true
{{ end }}