如何在angular + nodejs项目中的nodejs中res.redirect

时间:2017-11-11 16:16:13

标签: node.js angular express

我想将一些get请求重定向到/hello-world之类的地方,并使用angular4路径处理/hello-world地址。

我写了这个,但它无法正常工作:

app.get("/hi", (req, res) => {
    res.redirect('/hello-world')
});

Angular说:

Http failure response for http://localhost:4200/hello-world: 404 Not Found

但是当我通过http://localhost:4200/hello-world时,它会给我200并显示正确的结果!

0 个答案:

没有答案