简体   繁体   中英

How to read FormData in NextJS

I'd like to read fetch's body. Here's what I send:

fetch('/api/foo', {
  method: 'POST',
  body: new FormData(formRef.current),
});

在此处输入图像描述

And now I only need to parse the body. But I don't know how. I can't use FormData on the server side, because it says ReferenceError: FormData is not defined . And I can't also use forEach like on the client.

What should I do?

export default function sendMail(req: NextApiRequest, res: NextApiResponse): void {
    // console.log(req.body instanceof FormData);
    // req.body.forEach(console.log);
    console.log(req.body['name']);
    res.status(200).json({});
}

You could use formidable .

npm install formidable

Then in your code use

import { NextApiRequest, NextApiResponse } from 'next'
import formidable from 'formidable'

//set bodyparser
export const config = {
  api: {
    bodyParser: false
  }
}

export default async (req: NextApiRequest, res: NextApiResponse) => {
  const data = await new Promise((resolve, reject) => {
    const form = new formidable()

    form.parse(req, (err, fields, files) => {
      if (err) reject({ err })
      resolve({ err, fields, files })
    }) 
  })

  //return the data back or just do whatever you want with it
  res.status(200).json({
    status: 'ok',
    data
  })
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM