Err
Syntax
RESOURCE.Err
Returns
resource.resourceError
Err
方法适用于由 resources.GetRemote
函数返回的资源。如果 HTTP 请求失败,返回一个错误消息,否则返回 nil。如果您没有自己处理错误,Hugo 将会中断构建。
在这个例子中,我们向一个不存在的域发送一个 HTTP 请求:
{{ $url := "https://broken-example.org/images/a.jpg" }}
{{ with resources.GetRemote $url }}
{{ with .Err }}
{{ errorf "%s" . }}
{{ else }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ else }}
{{ errorf "无法获取远程资源 %q" $url }}
{{ end }}
上面的代码捕获了 HTTP 请求的错误,然后中断构建:
ERROR error calling resources.GetRemote: Get "https://broken-example.org/images/a.jpg": dial tcp: lookup broken-example.org on 127.0.0.53:53: no such host
要将错误记录为警告而不是错误:
{{ $url := "https://broken-example.org/images/a.jpg" }}
{{ with resources.GetRemote $url }}
{{ with .Err }}
{{ warnf "%s" . }}
{{ else }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ else }}
{{ errorf "无法获取远程资源 %q" $url }}
{{ end }}