Ejemplo 1: parámetros de ruta expresa
app.get('/users/:userId/books/:bookId', function (req, res) {
res.send(req.params)
})
Ejemplo 2: widlicard en enrutador express
//This route path will match acd and abcd.
app.get('/ab?cd', function (req, res) {
res.send('ab?cd')
})
//This route path will match abcd, abbcd, abbbcd, and so on.
app.get('/ab+cd', function (req, res) {
res.send('ab+cd')
})
//This route path will match abcd, abxcd, abRANDOMcd, ab123cd, and so on.
app.get('/ab*cd', function (req, res) {
res.send('ab*cd')
})
//This route path will match /abe and /abcde.
app.get('/ab(cd)?e', function (req, res) {
res.send('ab(cd)?e')
})
//This route path will match anything with an “a” in it.
app.get(/a/, function (req, res) {
res.send('/a/')
})
//This route path will match butterfly and dragonfly,
//but not butterflyman, dragonflyman, and so on.
app.get(/.*fly$/, function (req, res) {
res.send('/.*fly$/')
})
Ejemplo 3: parámetros opcionales de la ruta expressjs
use the '?' character
/articles/:year?/:month?/:day?
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)