我正在为我的CRM项目创建解决方案(网络资源)。为此,我使用Bing API用Java脚本编写了地图优化代码。

retrieveAccountsCallBack正在从CRM中检索地址。然后,我使用这些地址查找其地域代码。
问题是,当代码到达map.getCredentials(MakeGeocodeRequest)点时,它就没有进入map.getCredentials(MakeGeocodeRequest)函数的定义。它就像注释掉了一样通过了这条线。但是有时候这是可行的,但是没有确定的模式。

这是代码:

function retrieveAccountsCallBack(retrievedAccounts) {

        totalAccountCount = totalAccountCount + retrievedAccounts.length;

        for (var i = 0; i < retrievedAccounts.length; i++) {

            var account = retrievedAccounts[i];
            //retLoc.push(account.new_address);
            waypoint = retrievedAccounts[i].new_address;
            map.getCredentials(MakeGeocodeRequest);
            ///////////////////////////////////////////

        }


    }


MakeGeocodeRequest()的代码

 function MakeGeocodeRequest(cred) {

        var geocodeRequest = "http://dev.virtualearth.net/REST/v1/Locations?query=" + encodeURI(waypoint) + "&output=json&jsonp=GeocodeCallback&key=" + cred;
        CallRestService(geocodeRequest);
    }

最佳答案

终于我想通了!
仔细阅读Bing Maps API之后。我知道它的发生是由于该API中的一些匿名函数所致,因为它是用压缩的Java脚本代码编写的,所以我无法理解。

09-27 06:12