错误:发送后无法设置标头

时间:2017-04-22 19:02:30

标签: node.js express

在我的节点应用中,我有名为indexhome的路线。在尝试从索引重定向到主路由时,会引发以下错误:

Error: Can't set headers after they are sent

以下是代码:

app.get('/index', function (req, res) {
  res.redirect('/home');
})
app.get('/home', function (req, res) {
  res.send('Welcome Home !!');
})

1 个答案:

答案 0 :(得分:0)

您可以尝试替换' / index'用" / index"。之后它运作良好。