我正在尝试将多个通配符网址路由到express中的相同功能。我想我需要某种正则表达式,但我不知道该怎么做。
我想做这样的事情:
app.route(['scripts/*', 'styles/*', 'images/*']).get(handler);
答案 0 :(得分:2)
找到了一种方法:
app.route('/:url(api|components|scripts|styles|bower_components|images)/*')
.get(errors[404]);