此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

Request.text()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2017年3月⁩.

Request 接口的 text() 方法读取请求体并且将其作为一个 promise 返回,该 promise 将兑现一个 String。响应总是使用 UTF-8 解码。

语法

js
text()

参数

无。

返回值

一个 promise,会兑现一个 String

示例

js
const text = "Hello world";

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

request.text().then(function (text) {
  // do something with the text sent in the request
});

规范

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

浏览器兼容性

参见