在我的节点应用中,我有名为index
和home
的路线。在尝试从索引重定向到主路由时,会引发以下错误:
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 !!');
})
答案 0 :(得分:0)
您可以尝试替换' / index'用" / index"。之后它运作良好。