My code example:
JavaScript
x
16
16
1
router.get('/name/:name/height', (req,res) => {
2
3
}
4
5
router.get('/name/:name/weight', (req,res) => {
6
7
}
8
9
router.get('/age/:age/height', (req,res) => {
10
11
}
12
13
router.get('/age/:age/weight', (req,res) => {
14
15
}
16
Here, when name
comes as foo
, I want to replace it to bar
because foo
is an alias of bar
.
But inserting if-replace codes into all the blocks repeatedly doesn’t look good.
Is there any other option to implement this??
I tried with:
JavaScript
1
10
10
1
router.use('/name/:name', (req, res, next) => {
2
let name = req.params.name
3
if (name === 'foo') {
4
console.log("HHHHHHHHHHHHHHHHHHH")
5
req.params.name = 'bar'
6
}
7
next()
8
}
9
)
10
That HHH...
log is printed, but the req.params.name doesn’t seem to be updated.
Advertisement
Answer
If foo
is indeed an alias for bar
, I’d suggest you respond with a 301 Redirect
response for the foo
endpoint with something like this:
JavaScript
1
4
1
router.get('/name/foo/:path', (req, res) => {
2
res.redirect(301, '/name/bar/' + req.path);
3
});
4