我正在寻找一种方法(并希望已经有一个可用的方法)来读取 nodejs 中的动态路由参数。(就像 Zend Framework 1 默认路由器所做的那样)。
所以我想要这样的东西:
app.get('/resource/:key/:value/:anotherkey/:differentvalue', function(req, res) {
return res.send('This will print the :differentvalue: '+req.params.anotherkey);
});
但随后无需定义所有不同的键和值