Request()
The Request() constructor creates a new Request object.
Syntax
var myRequest = new Request(input[, init]);
Parameters
- input
-
Defines the resource that you wish to fetch. This can either be:
- A
USVStringcontaining the direct URL of the resource you want to fetch. - A
Requestobject, effectively creating a copy. Note the following behavioral updates to retain security while making the constructor less likely to throw exceptions:- If this object exists on another origin to the constructor call, the
Request.referreris stripped out. - If this object has a
Request.modeofnavigate, themodevalue is converted tosame-origin.
- If this object exists on another origin to the constructor call, the
- A
- init Optional
-
An options object containing any custom settings that you want to apply to the request. The possible options are:
-
method: The request method, e.g.,GET,POST. The default isGET. -
headers: Any headers you want to add to your request, contained within aHeadersobject or an object literal withStringvalues. -
body: Any body that you want to add to your request: this can be aBlob,BufferSource,FormData,URLSearchParams,USVString, orReadableStreamobject. Note that a request using theGETorHEADmethod cannot have a body. -
mode: The mode you want to use for the request, e.g.,cors,no-cors,same-origin, ornavigate. The default iscors. -
credentials: The request credentials you want to use for the request:omit,same-origin, orinclude. The default issame-origin. -
cache: The cache mode you want to use for the request. -
redirect: The redirect mode to use:follow,error, ormanual. The default isfollow. -
referrer: AUSVStringspecifyingno-referrer,client, or a URL. The default isabout:client. -
integrity: Contains the subresource integrity value of the request (e.g.,sha256-BpfBw7ivV8q2jLiT13fxDYAe2tJllusRSZ273h2nFSE=).
-
Errors
| Type | Description |
|---|---|
TypeError | Since Firefox 43, Request() will throw a TypeError if the URL has credentials, such as http://user:[email protected]. |
Example
In our Fetch Request example (see Fetch Request live) we create a new Request object using the constructor, then fetch it using a fetch() call. Since we are fetching an image, we run Response.blob on the response to give it the proper MIME type so it will be handled properly, then create an Object URL of it and display it in an <img> element.
var myImage = document.querySelector('img'); var myRequest = new Request('flowers.jpg'); fetch(myRequest).then(function(response) { return response.blob(); }).then(function(response) { var objectURL = URL.createObjectURL(response); myImage.src = objectURL; });
In our Fetch Request with init example (see Fetch Request init live) we do the same thing except that we pass in an init object when we invoke fetch():
var myImage = document.querySelector('img'); var myHeaders = new Headers(); myHeaders.append('Content-Type', 'image/jpeg'); var myInit = { method: 'GET', headers: myHeaders, mode: 'cors', cache: 'default' }; var myRequest = new Request('flowers.jpg',myInit); fetch(myRequest).then(function(response) { ... });
Note that you could also pass the init object into the fetch call to get the same effect, e.g.:
fetch(myRequest,myInit).then(function(response) { ... });
You can also use an object literal as headers in init.
var myInit = { method: 'GET', headers: { 'Content-Type': 'image/jpeg' }, mode: 'cors', cache: 'default' }; var myRequest = new Request('flowers.jpg', myInit);
You may also pass a Request object to the Request() constructor to create a copy of the Request (This is similar to calling the clone() method.)
var copy = new Request(myRequest);
Note: This last usage is probably only useful in ServiceWorkers.
Specifications
| Specification |
|---|
| Fetch Standard (Fetch) # ref-for-dom-request① |
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
Request |
40
From Chrome 47, default values for the
init argument's properties changed. mode defaults to same-origin (from no-cors). credentials defaults to include (from same-origin). redirect defaults to follow (from manual). |
14 |
39 |
No |
27 |
10.1 |
40
From WebView 47, default values for the
init argument's properties changed. mode defaults to same-origin (from no-cors). credentials defaults to include (from same-origin). redirect defaults to follow (from manual). |
40
From Chrome 47, default values for the
init argument's properties changed. mode defaults to same-origin (from no-cors). credentials defaults to include (from same-origin). redirect defaults to follow (from manual). |
39 |
27 |
10.3 |
4.0
5.0
Some default values for the init parameter changed in Samsung Internet 5.0. See the Properties section for details.
|
cross_origin_stripped |
Yes |
15 |
54 |
No |
Yes |
10.1 |
Yes |
Yes |
Yes |
No |
10.3 |
Yes |
init_referrer_parameter |
47 |
15 |
47 |
No |
34 |
10.1 |
47 |
47 |
Yes |
34 |
10.3 |
5.0 |
navigate_mode |
49 |
15 |
46 |
No |
Yes |
10.1 |
No |
49 |
Yes |
No |
10.3 |
5.0 |
readablestream_request_body |
No |
No |
No |
No |
? |
No |
No |
No |
No |
No |
No |
No |
reponse_body_readablestream |
43 |
≤79 |
65 |
No |
? |
No |
43 |
43 |
65 |
No |
10.3 |
4.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Request/Request