请求:text() 方法
语法
js
text()
参数
无。
返回值
解析为 String
的 Promise。
示例
js
const text = "Hello world";
const request = new Request("/myEndpoint", {
method: "POST",
body: text,
});
request.text().then((text) => {
// do something with the text sent in the request
});
规范
规范 |
---|
Fetch 标准 # ref-for-dom-body-text① |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。