How could I upload files in ExpressJS 4.x

前端 未结 3 599
野的像风
野的像风 2020-12-16 02:33

I know there are something like multiparty, and busboy and formidable. I want to know is there any chance to upload files without them.

3条回答
  •  庸人自扰
    2020-12-16 02:46

    Without them, parsing multipart forms can be hard to do right and efficiently. Unless you really want to go through that work of parsing multipart yourself (urlencoded forms are much easier), you really should stick to using one of connect-multiparty, multer, connect-busboy, reformed, etc.

提交回复
热议问题