dom / latest / request / clone.html /

Request.clone()

The clone() method of the Request interface creates a copy of the current Request object.

clone() throws a TypeError if the request body has already been used. In fact, the main reason clone() exists is to allow multiple uses of body objects (when they are one-use only.)

If you intend to modify the request, you may prefer the Request constructor.

Syntax

clone()

Parameters

None.

Return value

A Request object, which is an exact copy of the Request that clone() was called on.

Examples

In the following snippet, we create a new request using the Request() constructor (for an image file in the same directory as the script), then clone the request.

var myRequest = new Request('flowers.jpg');
var newRequest = myRequest.clone(); // a copy of the request is now stored in newRequest

Specifications

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
clone
40
14
39
No
27
10.1
40
40
39
27
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/clone