这个问题在《SO》中被问了很多次。但我还是拿不到东西。
我想从回调中得到一些值。请查看下面的脚本以获得澄清。
function foo(address){
// google map stuff
geocoder.geocode( { 'address': address}, function(results, status) {
results[0].geometry.location; // I want to return this value
})
}
foo(); //result should be results[0].geometry.location; value
如果我试图返回那个值,就会得到"undefined"我遵循了《SO》的一些想法,但是 仍然失败。
这些都是:
function foo(address){
var returnvalue;
geocoder.geocode( { 'address': address}, function(results, status) {
returnvalue = results[0].geometry.location;
})
return returnvalue;
}
foo(); //still undefined