gpt4 book ai didi

javascript - 如何使用关联数组上的整数索引进行迭代?

转载 作者:行者123 更新时间:2023-12-03 09:45:07 25 4
gpt4 key购买 nike

似乎我无法在任何地方找到这个问题的答案

我有一个数组

array=["id1" : "somedata", "id2" : "somedata2",....]

这样我就可以使用特殊的数据库 ID 对其进行索引但是如果我想从起始位置迭代(整数)这个数组怎么办?

for(i=5;i<10;i++)
array[i]... <= complains that index dont exist of course

最佳答案

这似乎不是一个有效的数组。

要么:

array=[{"id1" : "somedata"}, {"id2" : "somedata2"},....]

或者:

object={"id1" : "somedata", "id2" : "somedata2",....}

无论如何,要迭代数组:

for(i=5;i<10;i++) { // or i = 5; i < 10 && i < array.length; i++
if(array[i]) { // check if the index exists, also you could use array[i] !== undefined
....
}
}

关于javascript - 如何使用关联数组上的整数索引进行迭代?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31067657/

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