从nest函数返回getJSON结果

时间:2016-11-08 10:30:07

标签: javascript jquery json

我希望convertToLat()函数从嵌套函数返回变量lat。我尝试了很多方法,但它似乎无法奏效。任何帮助将不胜感激。谢谢。

function convertToLat(postal_code) {
  $.getJSON("http://maps.googleapis.com/maps/api/geocode/json?address="  + postal_code, function(result){
  var lat = result.results[0].geometry.location.lat;
  return lat;
  });
return function();
}

1 个答案:

答案 0 :(得分:1)

像下面代码段

一样使用它

convertToLat("211011").then(function(result){
  var lat = result.results[0].geometry.location.lat;
  console.log(lat);
});

function convertToLat(postal_code){
 
 return $.getJSON("http://maps.googleapis.com/maps/api/geocode/json?address="+postal_code);
  
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>