我正在尝试使用以下方法从 JavaScript读取 JSON 信息( https://maps.googleapis.com/maps/api/geocode/json?address=Mountain+View+Amphitheatre+Parkway&sensor=false ):
$.getJSON("https://maps.googleapis.com/maps/api/geocode/json?address="+city+"+"+steet+"&sensor=false", function(json) {
if (json.status == 'ZERO_RESULTS'){
alert('Wrong input');
}
else{
// Here I would like to read json.results.geometry.location.lat
}
});
但它不起作用。如果我尝试阅读 json.results,我会得到 [object Object]。因为打印 json 给了我同样的结果,我认为我可以继续使用句号,但它不起作用。
之后,我尝试遍历 json.results 并在将对象解析为数组之后,但一切都不起作用。