且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 express.js 中限制上传文件的大小

更新时间:2021-10-02 00:19:44

Express使用connect中间件,可以通过以下方式指定文件上传大小

Express uses connect middleware, you can specify the file upload size by using the following

app.use(express.limit('4M'));

连接限制中间件