gpt4 book ai didi

javascript - Meteor 中长度为 0 的非空数组

转载 作者:行者123 更新时间:2023-11-29 10:06:42 25 4
gpt4 key购买 nike

const items = [];
Meteor.http.call("GET", url,function(error,result){
$.each(JSON.parse(result.content), function(key, value){
items.push(value)
});
});

下面的代码返回长度为 0 的非空数组项。如何迭代数组或通过键将所有值提取到数组?
enter image description here

最佳答案

Meteor.http.call 是一个带有回调的异步函数。我可以想到做你想做的快速方法如下:

const items = [];
Meteor.http.call("GET", url,function(error,result){
$.each(JSON.parse(result.content), function(key, value){
items.push(value)
});
handleItems(items);
});

function handleItems(items) {
console.log(items.length) // 1
// Do what you want with the items array here.
}

关于javascript - Meteor 中长度为 0 的非空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42092615/

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