请求:bytes() 方法
bytes()
方法是 Request
接口的方法,用于读取请求主体并将其作为解析为 Uint8Array
的 Promise 返回。
语法
js
bytes()
参数
无。
返回值
解析为 Uint8Array
的 Promise。
示例
js
const myArray = new Uint8Array(10);
const request = new Request("/myEndpoint", {
method: "POST",
body: myArray,
});
request.bytes().then((buffer) => {
// do something with the buffer sent in the request
});
规范
规范 |
---|
Fetch 标准 # dom-body-bytes |
浏览器兼容性
BCD 表格仅在浏览器中加载