你好我试图通过调用循环外的函数将id的两个位置保存到数组中。问题是它给我一个错误,说loc不是一个函数。有谁知道问题在哪里?
var geocoder;
var map, x, y;
var loc = [];
geocoder = new google.maps.Geocoder();
// var address = document.getElementById("address").value;
// var user='33936357';
$.getJSON("http://api.twitter.com/1/users/lookup.json?user_id=33936357,606020001&callback=?", function (data) {
$.each(data, function (i, item) {
var screen_name = item.screen_name;
var img = item.profile_image_url;
var location = item.location;
geocoder.geocode({
address: location
}, function (response, status) {
if (status == google.maps.GeocoderStatus.OK) {
var x = response[0].geometry.location.lat(),
y = response[0].geometry.location.lng();
loc(x, y);
} else {
alert("Geocode was not successful for the following reason: " + status);
}
}); //GEOCODER.GEOCODE
});
function loc(x, y) {
loc.push({
latitude: x,
longitude: y
});
}
console.log(loc); //$.EACH
}); //.GETJSON
} //CODEADDRESS
答案 0 :(得分:0)
您声明了一个名为loc
的数组。为数组变量使用不同的名称,或更改函数名称。
您的问题如下:
var foo = [];
function foo() {
foo.push(1);
}
foo(); // here foo is the array []
答案 1 :(得分:0)
这里loc是一个数组:
var loc=[];
这里loc是一个函数:
function loc(x,y){loc.push({latitude:x,longitude:y});}
您的调试器在哪一行报告错误?
答案 2 :(得分:0)
在$.each()
回调函数中,您可以创建一个局部变量:
var location = item.location;
...与location()
声明在 $.each()
之外的函数location
同名。通过重用名称,内部变量“掩盖”外部函数。
所以你得到关于它不是函数的错误,因为在回调范围内{{1}}引用的局部变量不是函数。
只需更改变量或函数的名称。