Request.clone()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.

Request 接口中的**clone()** 方法可以创建一个当前Request 对象的副本。

如果响应体Body已经被使用过,那么 clone() 会抛出一个 TypeError。实际上,clone() 的主要作用就是支持 Body 对象的多次使用

语法

js
var newRequest = request.clone();

参数

无。

返回值

Request 对象,也就是 Request 的完整拷贝

示例

在下面的代码中,我们使用 Request.Request() 构造函数创建了一个新的 request 对象 (请求当前文件夹中的一个图片文件),然后拷贝了这个 request 对象。

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

规范

Specification
Fetch Standard
# ref-for-dom-request-clone①

浏览器兼容性

BCD tables only load in the browser

了解更多