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

Posted hongzhuang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决node 运行接口 出现 Cannot destructure property `us` of 'undefined' or 'null'.相关的知识,希望对你有一定的参考价值。

出现 参数是 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'.的主要内容,如果未能解决你的问题,请参考以下文章

node出现的错误——Error: Cannot find module 'fs.realpath'

VSCode 使用教程-9.Node运行js出现 Cannot use import statement outside a module的问题

vue项目访问页面是报错Error: Cannot find module '@/views/sys/menu/index'

vue项目访问页面是报错Error: Cannot find module '@/views/sys/menu/index'

运行ts-node xxx.ts报错:Cannot find module ……

Module build failed: Error: Cannot find module ‘node-sass‘ Require stack报错解决