Router.use() requires a middleware function but got a Object;This is probably not a problem with npm

搭建好express框架后,写了一个注册之后再写登录的时候,发现npm start报错了❌!!!

Router.use() requires a middleware function but got a Object;This is probably not a problem with npm_第1张图片

本人百度了图上两处错误代码,总结了一下发现有以下几点

  1. Router.use() requires a middleware function but got a Object

    • 解决方案一:路由未导出错误------在你写的模块中查看你是否导出路由了,没有就补上:module.exports = router
    • 解决方案二:细心问题-----查看你的router.js文件看看有没有引用留有错误
  2. This is probably not a problem with npm. There is likely additional logging output above

    • 缺少依赖错误、文件引用错误或者是node_modules依赖错误问题,看提示缺啥装啥,不行就删除node_modules,重新npm一下
  3. 自我反馈:

    不一定是安装错误,我的错误来源于bin/www文件名字错误,还有就是自己新建了js文件但是没有写内容(没有内容就是没有导出路由),尤其是写到后面的内容,一定要细心细心再细心,文件一多一出错就容易拖慢进度,还影响心情。

你可能感兴趣的:(express,nodejs,mongodb,bug,node.js)