码迷,mamicode.com
首页 > 其他好文 > 详细

解决node 运行接口 出现 Cannot destructure property `us` of 'undefined' or 'null'.

时间:2020-06-16 15:40:38      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:on()   encode   can   enc   引入   顺序   解决   structure   parse   

出现 参数是 undefined or null 

一、检查是否安装 body-parser

      server.js中是否引入 

app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
 
二、如果上面没有问题,请注意是是否 中间件顺序是否有问题
 
 错误:
app.use(‘/user‘,router);
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
 
正确:
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use(‘/user‘,router);
 
 

解决node 运行接口 出现 Cannot destructure property `us` of 'undefined' or 'null'.

标签:on()   encode   can   enc   引入   顺序   解决   structure   parse   

原文地址:https://www.cnblogs.com/hongzhuang/p/13140781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!