我有以下代码,并希望能够访问路由。我需要访问stop(我确实拥有)和路由,但似乎范围在busStops的映射中关闭。有没有办法让我可以进入路线?
感谢任何和所有帮助。谢谢。
busRoutes.map((route) => {
busStops.map((stop) => {
// would like access to current route here
})
})
答案 0 :(得分:0)
你确实访问了外部范围的变量,所以只需使用它们。
例如:
alert([1, 2, 3].map(i => {
return ['a', 'b', 'c'].map(c => c + i)
}))