从函数内部的函数返回值

发布于 2024-10-31 05:15:42 字数 870 浏览 0 评论 0原文

我正在使用 goMap 并尝试在其中添加一个函数,但在调用该函数时无法让它返回。如果我在函数内使用 alert() ,它会返回我需要的值。

getAddress: function(latlngcoords)
{
    var goMap = this;
    var input = latlngcoords;
    var latlngStr = input.split(",", 2);
    var lat = parseFloat(latlngStr[0]);
    var lng = parseFloat(latlngStr[1]);
    var latlng = new google.maps.LatLng(lat, lng);
    var address;

    geocoder.geocode({'latLng': latlng}, function(results, status) 
    {
        if(status == google.maps.GeocoderStatus.OK) 
        {
            if(results) 
            {   
                address = results;
                //alert(address); <-- works but
            }
        }
    });

    return address; // won't return at all?
},

它是通过执行以下操作来调用的: $.goMap.getAddress() 但参数中包含纬度和经度。我需要它通过返回地址返回值,但它根本不会返回任何内容。

我怎样才能让它返回值?

I'm using goMap and I'm trying to add a function inside it, but I cannot get it to return when the function is called. If I use alert() inside the function, it has the values I need it that should be returned.

getAddress: function(latlngcoords)
{
    var goMap = this;
    var input = latlngcoords;
    var latlngStr = input.split(",", 2);
    var lat = parseFloat(latlngStr[0]);
    var lng = parseFloat(latlngStr[1]);
    var latlng = new google.maps.LatLng(lat, lng);
    var address;

    geocoder.geocode({'latLng': latlng}, function(results, status) 
    {
        if(status == google.maps.GeocoderStatus.OK) 
        {
            if(results) 
            {   
                address = results;
                //alert(address); <-- works but
            }
        }
    });

    return address; // won't return at all?
},

It's called by doing: $.goMap.getAddress() but with a latitude and longitude in the argument. I need it to return the values by return address but it won't return anything at all.

How will I be able to get it to return the value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水波映月 2024-11-07 05:15:42

geocode 是一个异步函数。当您调用它时,它就会启动,但仅此而已。 (这就是它接受回调的原因。)因此,您的 getAddress 函数在回调设置 address 之前返回。

您需要让您的 getAddress 函数也接受回调,并以这种方式返回结果,例如,

getAddress: function(latlngcoords, callback)
                                // ^--- callback parameter
{
    var goMap = this;
    var input = latlngcoords;
    var latlngStr = input.split(",", 2);
    var lat = parseFloat(latlngStr[0]);
    var lng = parseFloat(latlngStr[1]);
    var latlng = new google.maps.LatLng(lat, lng);
    var address;

    geocoder.geocode({'latLng': latlng}, function(results, status) 
    {
        if(status == google.maps.GeocoderStatus.OK) 
        {
            if(results) 
            {   
                address = results;
                callback(address);
            //  ^--- call it with the result
            }
        }
    });
},

自然这意味着代码调用 getAddress必须处理 getAddress 也是异步的这一事实。

geocode is an asynchronous function. It starts when you call it, but that's all. (That's why it accepts a callback.) So your getAddress function is returning before address is set by the callback.

You need to have your getAddress function accept a callback as well, and return the result that way, e.g.

getAddress: function(latlngcoords, callback)
                                // ^--- callback parameter
{
    var goMap = this;
    var input = latlngcoords;
    var latlngStr = input.split(",", 2);
    var lat = parseFloat(latlngStr[0]);
    var lng = parseFloat(latlngStr[1]);
    var latlng = new google.maps.LatLng(lat, lng);
    var address;

    geocoder.geocode({'latLng': latlng}, function(results, status) 
    {
        if(status == google.maps.GeocoderStatus.OK) 
        {
            if(results) 
            {   
                address = results;
                callback(address);
            //  ^--- call it with the result
            }
        }
    });
},

Naturally this means that the code calling getAddress has to handle the fact that getAddress is also asynchronous.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文