Error: request entity too large

后端 未结 21 3166
无人共我
无人共我 2020-11-22 06:36

I\'m receiving the following error with express:

Error: request entity too large
    at module.exports (/Users/michaeljames/Documents/Projects/Proj/mean/node         


        
21条回答
  •  -上瘾入骨i
    2020-11-22 07:16

    I too faced that issue, I was making a silly mistake by repeating the app.use(bodyParser.json()) like below:

    app.use(bodyParser.json())
    app.use(bodyParser.json({ limit: '50mb' }))
    

    by removing app.use(bodyParser.json()), solved the problem.

提交回复
热议问题