我在应用程序中有一段代码,无法将项目推入一个空数组。在本节的开头,我创建了一些空数组变量。
var sumPOP = [];
var sumRACE = [];
var sumLANG = [];
var sumINCOME = [];
然后我将遍历一些选定的数据,因此我有一个for
循环。在此循环中,我正在调用api(我知道,它是GIS。这无关紧要。只是假装它是ajax调用)以检索一些数据。我可以console.log()
数据并且正确显示。然后,我想将该数据(循环中的每个项目)推送到前面提到的空数组。然后,要测试是否已填充该数组,请在循环内和循环外console.log()
对该数组进行检查。我的问题是,console.log
数组没有任何显示。为什么数据没有被推送到阵列之外?注意:在调用函数(esriRequest)中运行的console.log(sumPOP)确实显示了推送到数组的项目:
for (var i=0;i<results.features.length;i++){
...
esriRequest({
url:"https://api.census.gov/data/2016/acs/acs5",
content:{
get: 'NAME,B01003_001E,B02001_001E,B06007_001E,B06010_001E',
for: `tract:${ACS_TRCT}`,
in: [`state:${ACS_ST}`,`county:${ACS_CNTY}`]
},
handleAs:'json',
timeout:15000
}).then(function(resp){
result = resp[1];
POP = result[1];
console.log(POP);
sumPOP.push(POP);
RACE = result[2];
LANG = result[3];
INCOME = result[4];
console.log('POP: ' + POP + ', RACE: ' + RACE + ', LANG: '+ LANG + ', INCOME: ' + INCOME);
}, function(error){
alert("Data failed" + error.message);
});
console.log('POP: ' + sumPOP);
...
}
console.log('POP: ' + sumPOP);
其他信息:我的最终目标是在遍历所选数据并汇总后获得最终数组;或者,将其添加在一起。我预期的数组结果将是sumPOP = [143, 0, 29, 546, 99];
我想应用一个函数(也在循环外)来做到这一点:
newSum = function(category) {
let nAn = n => isNaN(n) ? 0 : n; //control for nonNumbers
return category.reduce((a, b) => nAn(a) + nAn(b))
};
...然后运行popTotal = newSum(sumPOP);
来获取总数。
答案 0 :(得分:1)
我相信您的数据已被推送,这似乎不是因为您的console.log()
的位置
由于您正在处理异步api调用,因此保证有数据的唯一位置是.then()
函数内部。本质上,在调试时,如果在所有console.log
处都添加了断点,则会注意到它首先击中.then()
之外的端点,最后击中.then()
内的端点。由于该顺序,看来您的数组没有得到推送到它们的数据。
我在下面的示例代码中添加了一些注释,以说明应该在哪里查看数据。
编辑:我也做了一些小的调整,以便填充所有数组
编辑2 :修改了代码,使其以“同步”方式处理多个异步承诺
var sumPOP = [];
var sumRACE = [];
var sumLANG = [];
var sumINCOME = [];
var myPromises = []; // added this new array for promise.all
for (var i = 0; i < results.features.length; i++) {
var myPromise = esriRequest({
url: "https://api.census.gov/data/2016/acs/acs5",
content: {
get: 'NAME,B01003_001E,B02001_001E,B06007_001E,B06010_001E',
for: `tract:${ACS_TRCT}`,
in: [`state:${ACS_ST}`, `county:${ACS_CNTY}`]
},
handleAs: 'json',
timeout: 15000
});
myPromises.push(myPromise);
// because you are making an async request, at this point, sumPOP may be empty
console.log('POP: ' + sumPOP);
}
Promise.all(myPromises).then(function(resp) {
result = resp[1];
POP = result[1];
console.log(POP); // this will show POP with data
RACE = result[2];
LANG = result[3];
INCOME = result[4];
sumPOP.push(POP);
sumRACE.push(RACE); // added this to populate array
sumLANG.push(LANG); // added this to populate array
sumINCOME.push(INCOME); // added this to populate array
// at this point, all your arrays should have data
console.log('POP: ' + POP + ', RACE: ' + RACE + ', LANG: ' + LANG + ', INCOME: ' + INCOME);
// now that this you have all values, you can call your outside function
this.handleData();
}, function(error) {
alert("Data failed" + error.message);
});
// because you are making an async request, at this point, sumPOP may be empty
console.log('POP: ' + sumPOP);
var handleData = function() {
// do something with the completed data
}