Note: This feature is available in Web Workers.
The formData() method of the Request interface reads the request body and returns it as a promise that resolves with a FormData object.
formData()None.
A Promise that resolves with a FormData object.
TypeErrorThrown for one of the following reasons:
Content-Encoding header is incorrect).Content-Type headers included in the request, or is not application/x-www-form-urlencoded or multipart/form-data.FormData object.const formData = new FormData();
const fileField = document.querySelector('input[type="file"]');
formData.append("username", "abc123");
formData.append("avatar", fileField.files[0]);
const request = new Request("/myEndpoint", {
method: "POST",
body: formData,
});
request.formData().then((data) => {
// do something with the formdata sent in the request
});