HttpResponse
A full HTTP response, including a typed response body (which may be null
if one was not returned).
constructor
HttpResponse<T>Construct a new HttpResponse.
{ body?: T | null | undefined; headers?: HttpHeaders | undefined; status?: number | undefined; statusText?: string | undefined; url?: string | undefined; redirected?: boolean | undefined; }HttpResponse<T>body
T | nullThe response body, or null if one was not returned.
clone
3 overloadsHttpResponse<T>{ headers?: HttpHeaders | undefined; status?: number | undefined; statusText?: string | undefined; url?: string | undefined; redirected?: boolean | undefined; }HttpResponse<T>{ body?: V | null | undefined; headers?: HttpHeaders | undefined; status?: number | undefined; statusText?: string | undefined; url?: string | undefined; redirected?: boolean | undefined; }HttpResponse<V>headers
HttpHeadersAll response headers.
status
numberResponse status code.
statusText
stringTextual description of response status code, defaults to OK.
Do not depend on this.
url
string | nullURL of the resource retrieved, or null if not available.
ok
booleanWhether the status code falls in the 2xx range.
redirected
boolean | undefinedIndicates whether the HTTP response was redirected during the request.
This property is only available when using the Fetch API using withFetch()
When using the default XHR Request this property will be undefined
Description
A full HTTP response, including a typed response body (which may be null
if one was not returned).
HttpResponse is a HttpEvent available on the response event
stream.