現在、ノードを持つ外部サイトにリダイレクトしようとしています。しかし、私は可能な解決策を見つけることができないようです。どんな助けもありがとう。 Response.redirectを試してみると、TypeErrorが返ってくることに注意してください。res.redirectは関数ではありません。しかし、エクスプレスドキュメントを見るとそこにあるようです。res.redirectは明示的な関数ではありません
あなたがres.redirect('http://app.example.io');
Expressのドキュメント行うことができます
app.get('/:urlToForward', (res, req, next)=>{
//Stores the value of param
// var shorterUrl = res.params.urlToForward;
// shortUrl.findOne({'shorterUrl': shorterUrl}, (err,data)=>{
// // if (err) {
// // res.send("This shorterUurl does not exist.");
// // }
// // else {
// // res.redirect(301, data.originalUrl);
// // }
// // response.end();
// });
res.redirect('https://www.google.com');
});
あなたのコードをgetコールに投稿してください。 –
関数引数にreqとresを混在させました。 – qqilihq