我正在我的谷歌地图代码中处理这个问题,但它实际上是一个架构问题。在某些时候,由于请求太多,谷歌地图限制了响应,那时我想延迟发出另一个请求,但是当我再次调用 function2 时,它说“数组未定义”。
function1() {
var array = JSON.parse(xmlhttp.responseText);
for (i; i < length; < i++) {
function2(array[i].one, array[i].two);
}
function3() {
//render directions
}
function2(start, end) {
directionsService.route({
origin: start,
destination: end,
},
function (result, status) {
if (status == google.maps.DirectionsStatus.OK)
function3(result);
else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT)
var functionStr = "function2(array[i].one" + ',' + "array[i].two)";
setTimeout(functionStr, 5000);
});
}
}