Cannot set headers after they are sent to the client
来源:7-3 cookie用于登录验证
caldevens
2021-05-21
UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client.
res 打印如下:
我也看到了一些类似问题是这边出问题了
老师能详细说说吗,整个处理流程感觉脑子里还是不清晰
写回答
1回答
-
双越
2021-05-22
这个报错就是:你执行了 res.end(...) 之后,又去设置 res header ,就会报错。
你想,res 都返回了,再去设置 header 就无意义了,对吧?
你捋一下你的代码逻辑,看看是不是这个错误。
00
相似问题