Response
This Fetch API interface represents the response to a request.
class Response implements Body { }
readonly bodyUsed: boolean;
readonly ok: boolean;
readonly redirected: boolean;
readonly status: number;
readonly statusText: string;
readonly url: string;
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
clone(): Response;
formData(): Promise<FormData>;
json(): Promise<any>;
text(): Promise<string>;
§Properties
§
body: ReadableStream<Uint8Array> | null
[src]A simple getter used to expose a ReadableStream
of the body contents.
§
bodyUsed: boolean
[src]Stores a Boolean
that declares whether the body has been used in a
response yet.
§
type: ResponseType
[src]§Methods
§
arrayBuffer(): Promise<ArrayBuffer>
[src]Takes a Response
stream and reads it to completion. It returns a promise
that resolves with an ArrayBuffer
.
§
json(): Promise<any>
[src]Takes a Response
stream and reads it to completion. It returns a promise
that resolves with the result of parsing the body text as JSON.
§
text(): Promise<string>
[src]Takes a Response
stream and reads it to completion. It returns a promise
that resolves with a USVString
(text).