React | When to Use FormData in React
Quick notes on when to use FormData vs just using React state.
✅ Use FormData when...
1. Uploading files (e.g. images)
Files can’t be sent via JSON.stringify()FormData handles multipart/form-data for you
const handleSubmit = (e) => {
e.preventDefau...
val-codeops.hashnode.dev2 min read
Alexis Pineda
I build and watch stuff, using tech for good
Very nice! I do use react-hook-form for forms that are a bit large. Formik can be an option too.