我正在为My CRM项目创建解决方案(Web资源)。为此,我使用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);
}
答案 0 :(得分:0)
最后我想通了!!!! 彻底阅读Bing Maps API后。我开始知道它正在发生由于该API中的一些匿名函数,我无法理解,因为它是用压缩的java脚本代码编写的。