node报错
Posted 九加十一
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node报错相关的知识,希望对你有一定的参考价值。
1. Cannot set headers after they are sent to the client
翻译:将请求头发送到客户端后无法设置请求头
原因:客户端发送一次请求的时候,服务器端给出了多次响应
解决:在你的每次响应后添加return,避免多余响应。
2.express error: express deprecated res.send(status): Use res.sendStatus(status) instead
翻译:express 已弃用 res.send(status):改用res.sendStatus(status)相反
原因:express将数字当成状态码
解决:将返回结果与空字符串拼接为字符串或将数字 toString() 直接变成字符串
以上是关于node报错的主要内容,如果未能解决你的问题,请参考以下文章