/review-{title}-{id} のようにルートを動的にしようとしていますが、理由がわからないエラーが発生します。また、ユーザーが間違ったパラメーターを入力した場合、それを処理する方法よりも. 私のクライアントの要件は上記のようなものです。私はノードが苦手で、上記のようなルートを作成する方法を誰か提案してください。また、この /review/:title/:id 形式のようなルートを作成する必要がある場合は、どうすればそのように作成できますか。
試していますが、404 ページにリダイレクトされます。
server.js内の既存のコードの詳細を見つけてください
this is working..
app.get('/review', (req, res) => {
res.sendFile(path.resolve(__dirname, '../client/review.html'));
});
but not this one..
app.get('/review-*-*', (req, res) => {
res.sendFile(path.resolve(__dirname, '../client/review.html'));
});
Also not this one working
app.get('/review/*/*', (req, res) => {
res.sendFile(path.resolve(__dirname, '../client/review.html'));
});
This is 404 page which call evrytime while accessing dynamic pages
app.get('/*', (req, res) => {
res.sendFile(path.resolve(__dirname, '../client/404.html'));
});