hugo/docs/content/en/methods/resource/Data.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

1.2 KiB

title description categories keywords action
Data Applicable to resources returned by the resources.GetRemote function, returns information from the HTTP response.
related returnType signatures
functions/resources/GetRemote
methods/resource/Err
map
RESOURCE.Data

The Data method on a resource returned by the resources.GetRemote function returns information from the HTTP response.

{{ $url := "https://example.org/images/a.jpg" }}
{{ with resources.GetRemote $url }}
  {{ with .Err }}
    {{ errorf "%s" . }}
  {{ else }}
    {{ with .Data }}
      {{ .ContentLength }} → 42764
      {{ .ContentType }} → image/jpeg
      {{ .Status }} → 200 OK
      {{ .StatusCode }} → 200
      {{ .TransferEncoding }} → []
    {{ end }}
  {{ end }}
{{ else }}
  {{ errorf "Unable to get remote resource %q" $url }}
{{ end }}
ContentLength
(int) The content length in bytes.
ContentType
(string) The content type.
Status
(string) The HTTP status text.
StatusCode
(int) The HTTP status code.
TransferEncoding
(string) The transfer encoding.