所以我一直在研究jquery延迟,但是在循环中检索数据时遇到了麻烦。延迟部分似乎只处理最后一次迭代的数据。如果数组中只有一个项目,它也会失败,所以我不确定是怎么回事。
我有各种城市名称,我试图从谷歌地图反向地理编码获取每个城市的中心坐标
这是我的函数,它获取中心坐标:
function getGroupLatLng(groupname){
var deferred = new $.Deferred();
geocoder.geocode( { 'address': groupname}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
deferred.resolve(results);
alert(results[0].geometry.location.lat());
} else {
}
});
return deferred.promise();
}
这是调用函数的地方,并在返回结果后附加div:
var newGroupsLength = newGroups.length;
for (i = 0; i < newGroupsLength; i++) {
newGroups[i]['counter']=counter;
var locationName = newGroups[i]['name'];
counter++;
alert(locationName);
$.when(getGroupLatLng(locationName)).then(function(results){
alert("lat = "+results[0].geometry.location.lat());
var lat=results[0].geometry.location.lat();
var lng=results[0].geometry.location.lng();
console.log(newGroups[i]); //this is running the proper number of times, but it logs the results from the final looped item, 'n' number of times.
newGroups[i]['lat']=lat;
newGroups[i]['lng']=lng;
var jsonArray=[];
jsonArray = newGroups[i];
var template = $('#groupsTemplate').html();
var html = Mustache.to_html(template, jsonArray);
$('#groups-container').append(html);
});
}
我遇到的问题是延迟循环似乎处理for循环'n'次的最后一项,其中'n'是newGroupsLength数组中的项目数。当然它应该处理每个项目一次。如果删除延迟操作,则一切正常。
真诚地感谢您的帮助。非常感谢
答案 0 :(得分:1)
有两个事实可以合作来实现这个结果:
将对象写入日志时,它是对写入的对象的引用,而不是数据的副本。如果对象在记录后发生更改,则日志将显示已更改的数据。
在第一次调用then
的回调函数之前,循环已经完成。这意味着i
对于所有回调都具有相同的值,因此您将所有结果放在同一个对象中。
因此,newGroups[i]
中的值将针对每个处理的响应而更改,但您只会看到日志中的最后一个值,因为这是日志显示时对象所包含的内容。
要使循环中的每次迭代保持i
的值以便稍后在响应到达时,您可以使用IIFE(立即调用的函数表达式)为每次迭代创建局部变量:
var newGroupsLength = newGroups.length;
for (i = 0; i < newGroupsLength; i++) {
(function(i){
newGroups[i]['counter']=counter;
var locationName = newGroups[i]['name'];
counter++;
alert(locationName);
$.when(getGroupLatLng(locationName)).then(function(results){
alert("lat = "+results[0].geometry.location.lat());
var lat=results[0].geometry.location.lat();
var lng=results[0].geometry.location.lng();
newGroups[i]['lat']=lat;
newGroups[i]['lng']=lng;
console.log(newGroups[i]); // log the object after setting the values
var jsonArray=[];
jsonArray = newGroups[i];
var template = $('#groupsTemplate').html();
var html = Mustache.to_html(template, jsonArray);
$('#groups-container').append(html);
});
})(i);
}