我正在快速构建我的第一个应用程序。是否有可能以某种方式将路由段作为参数传递给回调?
app.get('/connect/:mySegment', myCallback(mySegment));
具体来说,我正在使用具有多种身份验证策略的护照。所以与其做,
app.get('/connect/twitter',
passport.authorize('twitter')
);
app.get('/connect/facebook',
passport.authorize('facebook')
);
我想做一些类似的事情......
app.get('/connect/:service', passport.authorize(service));