Skip to content

Documentation / @ember-data/request / index / RequestInfo

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:235

Extends JavaScript's native Request object with additional properties specific to the RequestManager's capabilities.

Extends

  • Request

Type Parameters

RT

RT = unknown

T

T = unknown

Properties

___(unique) Symbol(EnableHydration)?

ts
optional ___(unique) Symbol(EnableHydration): boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:271


___(unique) Symbol(RequestSignature)?

ts
optional ___(unique) Symbol(RequestSignature): RT;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:270


body?

ts
optional body: null | BodyInit;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:216

Any body that you want to add to your request. Note that a GET or HEAD request may not have a body.

Inherited from

ts
Request.body

cache?

ts
optional cache: RequestCache;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:174

Returns the cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching.

Inherited from

ts
Request.cache

cacheOptions?

ts
optional cacheOptions: CacheOptions<T>;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:244

See

CacheOptions


controller?

ts
optional controller: AbortController;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:240

If provided, used instead of the AbortController auto-configured for each request by the RequestManager


credentials?

ts
optional credentials: RequestCredentials;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:177

Returns the credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL.

Inherited from

ts
Request.credentials

data?

ts
optional data: Record<string, unknown>;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:263

data that a handler should convert into the query (GET) or body (POST).

Note: It is recommended that builders set query params and body directly in most scenarios.


destination?

ts
optional destination: RequestDestination;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:180

Returns the kind of resource requested by request, e.g., "document" or "script".

Inherited from

ts
Request.destination

disableTestWaiter?

ts
optional disableTestWaiter: boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:254


duplex?

ts
optional duplex: "half";

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:224

When sending a ReadableStream as the body of a request, 'half' must be specified.

Half Duplex Further Reading

Inherited from

ts
Request.duplex

headers?

ts
optional headers: Headers;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:183

Returns a Headers object consisting of the headers associated with request. Note that headers added in the network layer by the user agent will not be accounted for in this object, e.g., the "Host" header.

Inherited from

ts
Request.headers

integrity?

ts
optional integrity: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:186

Returns request's subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace. [SRI]

Inherited from

ts
Request.integrity

keepalive?

ts
optional keepalive: boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:189

Returns a boolean indicating whether or not request can outlive the global in which it was created.

Inherited from

ts
Request.keepalive

method?

ts
optional method: HTTPMethod;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:192

Returns request's HTTP method, which is "GET" by default.

Inherited from

ts
Request.method

mode?

ts
optional mode: RequestMode;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:198

Returns the mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs.

no-cors is not allowed for streaming request bodies.

Inherited from

ts
Request.mode

op?

ts
optional op: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:246


options?

ts
optional options: Record<string, unknown>;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:269

options specifically intended for handlers to utilize to process the request


records?

ts
optional records: StableRecordIdentifier[];

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:253

The identifiers of the primary resources involved in the request (if any). This may be used by handlers to perform transactional operations on the store.


redirect?

ts
optional redirect: RequestRedirect;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:201

Returns the redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default.

Inherited from

ts
Request.redirect

referrer?

ts
optional referrer: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:204

Returns the referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the Referer header of the request being made.

Inherited from

ts
Request.referrer

referrerPolicy?

ts
optional referrerPolicy: ReferrerPolicy;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:207

Returns the referrer policy associated with request. This is used during fetching to compute the value of the request's referrer.

Inherited from

ts
Request.referrerPolicy

signal?

ts
optional signal: AbortSignal;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:210

Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler.

Inherited from

ts
Request.signal

store?

ts
optional store: unknown;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:245


url?

ts
optional url: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:213

Returns the URL of request as a string.

Inherited from

ts
Request.url

Released under the MIT License.