| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/API/Request/text | [Back] [Original] |
Get to know MDN better
text()
const text = "Hello world";
const request = new Request("/myEndpoint", {
method: "POST",
body: text,
});
request.text().then((text) => {
//
});
| Fetch # ref-for-dom-body-text |
| Web Proxy Viewer | New URL | Original Page |