我的Express应用上有一条路线如下:
app.get('/:id', function (request, response) { … });
该ID始终是数字。但是,此路线目前与其他条件匹配,例如/login。
/login
我想我希望从中得到两点:
能做到吗?
扩展Marius的答案,您可以提供正则表达式和参数名称:
app.get('/:id(\\d+)/', function (req, res){ // req.params.id is now defined here for you });