Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 460 Bytes

form-data.md

File metadata and controls

18 lines (13 loc) · 460 Bytes
title new
Working With FormData
true

Working With FormData

TODO: This document is a stub

A common trick is to turn the entire formData into an object with Object.fromEntries:

const data = Object.fromEntries(await request.formData());
data.songTitle;
data.lyrics;