如何返回响应,然后在nedb中重定向?

时间:2019-02-24 20:45:15

标签: node.js express nedb

简而言之,我的代码是

res.status(200).end();
return res.redirect("/");

但这会给出一个错误,提示Cannot set headers after they are sent to the client

1 个答案:

答案 0 :(得分:1)

答案是删除.end中的res.status

res.status(200);
return res.redirect("/");