【发布时间】:2016-09-02 20:29:46
【问题描述】:
我查看了此问题的先前答案,但我不明白如果多个路径中有res.send(),为什么会出现此错误。
我的代码是这样的(expressjs 4.13):
var user ={
username: "some",
password: "a"
}
router.post('/login', authenticate, function (req, res) {
//if it passes the middleware, send back the user
var token = jwt.sign({
username: user.username
}, jwtSecret);
res.send({
token: token,
user: user
});
});
function authenticate(req, res, next) {
var body = req.body;
var username = body.username, password = body.password;
//if nothing is sent
if(!username || !password){
res.status(400).end('Must send a user and pass');
}
//if incorrect credentials are sent
if(username !== user.username || password !== user.password){
res.status(401).end("Incorrect credentials");
}
//if it reaches here, it means credentials are correct
next();
}
当我不从前端发送任何内容时,我收到 400 和错误消息,但我的服务器显示:
POST /apis/auth/login 401 0.841 ms - -
Error: Can't set headers after they are sent.
at ServerResponse.OutgoingMessage.setHeader (_http_outgoing.js:346:11)
at ServerResponse.header (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/response.js:718:10)
at ServerResponse.json (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/response.js:246:10)
at ServerResponse.send (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/response.js:151:21)
at /home/vivek/dev/qwiksplit/jsback/app.js:81:9
at Layer.handle_error (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/router/layer.js:71:5)
at trim_prefix (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/router/index.js:310:13)
at /home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/router/index.js:280:7
at Function.process_params (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/router/index.js:330:12)
at next (/home/vivek/dev/qwiksplit/jsback/node_modules/express/lib/router/index.js:271:10)
我不确定在发送响应后如何设置标头。
【问题讨论】:
标签: javascript node.js express