名称
Syntax
RESOURCE.Name
Returns
string
Name
方法在 Resource
对象上返回的值取决于资源的类型。
全局资源
对于全局资源, Name
方法返回相对于 assets 目录的资源路径。
assets/
└── images/
└── a.jpg
{{ with resources.Get "images/a.jpg" }}
{{ .Name }} → images/a.jpg
{{ end }}
页面资源
对于页面资源, Name
方法返回相对于页面捆绑包的资源路径。
content/
├── posts/
│ ├── post-1/
│ │ ├── images/
│ │ │ └── a.jpg
│ │ └── index.md
│ └── _index.md
└── _index.md
{{ with .Resources.Get "images/a.jpg" }}
{{ .Name }} → images/a.jpg
{{ end }}
如果在正文中的 resources
数组中创建一个元素,则 Name
方法返回 name
参数的值:
content/posts/post-1.md
---
resources:
- name: cat
params:
temperament: malicious
src: images/a.jpg
title: Felix the cat
title: Post 1
---
+++
title = 'Post 1'
[[resources]]
name = 'cat'
src = 'images/a.jpg'
title = 'Felix the cat'
[resources.params]
temperament = 'malicious'
+++
{
"resources": [
{
"name": "cat",
"params": {
"temperament": "malicious"
},
"src": "images/a.jpg",
"title": "Felix the cat"
}
],
"title": "Post 1"
}
{{ with .Resources.Get "cat" }}
{{ .Name }} → cat
{{ end }}
远程资源
对于远程资源, Name
方法返回一个哈希文件名。
{{ with resources.GetRemote "https://example.org/images/a.jpg" }}
{{ .Name }} → a_18432433023265451104.jpg
{{ end }}