是否有任何方法可以动态获取平台信息并处理它们,即使当我尝试访问函数外部的值时,它也不起作用,因为它是一个单一的路由文件
router.get(
"/:platform",
function data(req, res, next) {
var platform = req.params.platform;
next();
},
passport.authenticate("google", { scope: ["email"] })
);
是否有任何方法可以动态获取平台信息并处理它们,即使当我尝试访问函数外部的值时,它也不起作用,因为它是一个单一的路由文件
router.get(
"/:platform",
function data(req, res, next) {
var platform = req.params.platform;
next();
},
passport.authenticate("google", { scope: ["email"] })
);
1条答案
按热度按时间sh7euo9m1#
可以将数据保存在
req
中,然后手工运行中间件这个应该能用,但我没有测试