标签: node.js express nedb
简而言之,我的代码是
res.status(200).end(); return res.redirect("/");
但这会给出一个错误,提示Cannot set headers after they are sent to the client。
Cannot set headers after they are sent to the client
答案 0 :(得分:1)
答案是删除.end中的res.status:
.end
res.status
res.status(200); return res.redirect("/");