gpt4 book ai didi

angular - rxjs:带索引的 map

转载 作者:行者123 更新时间:2023-12-04 01:01:54 26 4
gpt4 key购买 nike

我想知道使用 map 时当前对象的索引。例如:

x = [3,2,6]
from(x).pipe(
map(index, val => (val, index))
).subscribe((val, index) => console.log(val, index))
预期输出
3, 0
2, 1
6, 2
基本上,我想知道数组中元素的索引。我怎样才能做到这一点?

最佳答案

它与您尝试过的非常接近

from(x).pipe(
map((val, index) => [val, index]) // here we transform event to array (call it tuple if you like)
).subscribe(([val, index]) => console.log(val, index)) // here in params we destructure tuple to values again

关于angular - rxjs:带索引的 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68074302/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com