Request:body 属性

Request 接口的只读 body 属性包含一个 ReadableStream,其中包含已添加到请求中的主体内容。请注意,使用 GETHEAD 方法的请求不能有主体,这些情况下返回 null

示例

js
const request = new Request("/myEndpoint", {
  method: "POST",
  body: "Hello world",
});

request.body; // ReadableStream

规范

Specification
Fetch Standard
# ref-for-dom-body-body①

浏览器兼容性

BCD tables only load in the browser

参见