node.js body-parser 为什么会报错 bodyParser.raw is not a function?
ringa_lee
ringa_lee 2017-04-17 14:36:52
0
2
786

很简单的一段代码,想要设置raw的entity大小,因为上传图片导致node request entity too large

修改:

app.use(bodyParser.json({limit: "50mb"}));
app.use(bodyParser.raw({limit: "50mb"}));//这里出错了,bodyParser.raw is not a function?
app.use(bodyParser.urlencoded({limit: "50mb", extended: true, parameterLimit:50000}));
ringa_lee
ringa_lee

ringa_lee

全部回覆(2)
PHPzhong

你的body-parser什麼版本?

Peter_Zhu

這些中間件都已經在exprss4.0之後connect中分離出來了

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!