新人问下express路由
大家好,在楼主的程序中有以下路由配置:
app.route(’/user/:username’).get(…); app.route(’/user/:username/test’).get(…);
请问在浏览器中直接输入 "localhost:3000/user/admin/test"后,不是应该直接匹配第二个路由么,然而从调试过程中看, 为什么先要经过第一个路由再跳转到第二个路由。
大家好,在楼主的程序中有以下路由配置:
app.route(’/user/:username’).get(…); app.route(’/user/:username/test’).get(…);
请问在浏览器中直接输入 "localhost:3000/user/admin/test"后,不是应该直接匹配第二个路由么,然而从调试过程中看, 为什么先要经过第一个路由再跳转到第二个路由。