IsAncestor
Syntax
PAGE1.IsAncestor PAGE2
Returns
bool
一个 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
在渲染 “auctions” 页面时:
{{ with .Site.GetPage "/" }}
{{ $.IsAncestor . }} → false
{{ end }}
{{ with .Site.GetPage "/auctions" }}
{{ $.IsAncestor . }} → false
{{ end }}
{{ with .Site.GetPage "/auctions/2023-11" }}
{{ $.IsAncestor . }} → true
{{ end }}
{{ with .Site.GetPage "/auctions/2023-11/auction-2" }}
{{ $.IsAncestor . }} → true
{{ end }}
在上面的示例中,我们使用 [with
] 语句进行防御性编码,如果页面不存在,则不返回任何内容。通过添加 [else
] 子句,我们可以进行一些错误报告:
{{ $path := "/auctions/2023-11" }}
{{ with .Site.GetPage $path }}
{{ $.IsAncestor . }} → true
{{ else }}
{{ errorf "无法找到路径为 %s 的部分" $path }}
{{ end }}
理解上下文
在 with
块内,上下文(点)是该节的 Page
对象,而不是传递给模板的 Page
对象。如果我们使用以下语法:
{{ with .Site.GetPage "/auctions" }}
{{ .IsAncestor . }} → true
{{ end }}
当渲染 “auction-1” 页面时,结果将是错误的,因为我们将节页面与自身进行比较。
{{ with .Site.GetPage "/auctions" }}
{{ $.IsAncestor . }} → true
{{ end }}
上下文: [/getting-started/glossary/#context]
[with
]: /functions/go-template/with
[else
]: /functions/go-template/else