Request.text()
语法
text()
参数
无。
返回值
一个 promise,会兑现一个 String
。
示例
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 Standard # ref-for-dom-body-text① |
浏览器兼容性
BCD tables only load in the browser