gpt4 book ai didi

javascript - 迭代 JSON 对象

转载 作者:行者123 更新时间:2023-12-03 10:02:55 25 4
gpt4 key购买 nike

我有一个像这样的 JSON 对象

var Obj = {
'id1': 'abc',
'id2': 'pqr',
'id3': 'xyz'
}

我在迭代时调用异步方法,如下所示

var otherObj = {};
for (i in Obj) {

var someData = Obj[i];

File.upload(someData).then(function(response) {
otherObj[i] = response.data.url;
});
}

但是在这里我得到了 otherObj 作为

otherObj = {
'id3':'url1',
'id3':'url2',
'id3':'url3',
}

所以我的问题是正确关联 Obj 中存在的每个键的最佳方法是什么?响应为 File.upload() 的对象。

最佳答案

您需要使用 IIFE

for (i in Obj) {

var someData = Obj[i];
(function(i) {
File.upload(someData).then(function(response) {
otherObj[i] = response.data.url;
});
})(i);
}

这会将 i 保留在 File.upload().then 回调的执行上下文中。之前发生的事情是每个 File.upload().then 都“看到”最后一个迭代的 i,它对所有回调可见。

关于javascript - 迭代 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30496665/

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