nodejs后台运行出现Cannot read property'query' of undefined问题

在cmd里面输入命令node ./bin/www  ,却突然弹出了下面这一堆英文,TypeError:Cannot read property'query' of undefined......
nodejs后台运行出现Cannot read property'query' of undefined问题_第1张图片
不要着急。此时并不是你的代码有什么问题,而是你的数据库还没开启。
此时ctrl+r 输入cmd再次打开一个命令提示符,输入net start mysql       要是此时又出现下面这个问题“发生系统错误5”

也不要着急,你再找到你的命令提示符,右键-使用管理员身份打开,这个时候你再次输入net start mysql 就可以打开数据库了。数据库打开之后重新回到你nodejs项目的server文件夹下面,输入node ./bin/www就可以正确运行了(当然啦,其他的代码错误就另当别论了)。

你可能感兴趣的:(nodejs)