我有一个动态生成的对象,如下所示:
colorArray = {
AR: "#8BBDE1",
AU: "#135D9E",
AT: "#8BBDE1",
... }
我正在尝试在调用插件期间通过使用此插件和“颜色”属性来为地图着色。像这样:
$('#iniDensityMap').vectorMap({
backgroundColor: '#c2e2f2',
colors: colorArray,
... (some other params)
});
但它不会在国家/地区着色。当我硬编码它时,它工作正常 - 但它必须为这个项目动态生成,所以这样的东西对我不起作用(尽管它确实为地图着色):
$('#iniDensityMap').vectorMap({
backgroundColor: '#c2e2f2',
colors: { AR: "#8BBDE1", AU: "#135D9E", AT: "#8BBDE1" },
... (some other params)
});
我已经在插件中充分追踪了这个问题,发现它与这个循环有关:
setColors: function(key, color) {
if (typeof key == 'string') {
this.countries[key].setFill(color);
} else {
var colors = key; //This is the parameter passed through to the plugin
for (var code in colors) {
//THIS WILL NOT GET CALLED
if (this.countries[code]) {
this.countries[code].setFill(colors[code]);
}
}
}
},
我也尝试过colorArray
在插件之外自己迭代对象,我遇到了同样的问题。for ( var x in obj )中的任何内容都不会触发。我还注意到colorArray.length
返回undefined。另一个重要的注意事项是,我var colorArray = {};
在单独的调用中进行了实例化,试图确保它位于全局范围内并且能够被操纵。
我认为问题是:
- 我动态填充对象的方式 -
colorArray[cCode] = cColor;
(在 jQuery .each 调用中) - 我再次混淆了javascript中Arrays()和Objects()之间的区别
- 也许这是一个范围问题?
- 以上所有内容的某种组合。
编辑#1:我已将关于 Firebug 控制台中的对象的附加问题移至新帖子HERE。这个问题比我在这里询问的底层 JS 问题更具体地涉及 Firebug。
编辑#2:附加信息 这是我用来动态填充对象的代码:
function parseDensityMapXML() {
$.ajax({
type: "GET",
url: "media/XML/mapCountryData.xml",
dataType: "xml",
success: function (xml) {
$(xml).find("Country").each(function () {
var cName = $(this).find("Name").text();
var cIniCount = $(this).find("InitiativeCount").text();
var cUrl = $(this).find("SearchURL").text();
var cCode = $(this).find("CountryCode").text();
//Populate the JS Object
iniDensityData[cCode] = { "initiatives": cIniCount, "url": cUrl, "name": cName };
//set colors according to values of initiatives count
colorArray[cCode] = getCountryColor(cIniCount);
});
}
});
} //end function parseDensityMapXML();
然后在页面上其他地方的复选框的单击事件上调用此函数。对象iniDensityData
和colorArray
在 html 文件的头部声明 - 希望将它们保持在全局范围内:
<script type="text/javascript">
//Initialize a bunch of variables in the global scope
iniDensityData = {};
colorArray = {};
</script>
最后,这是正在读取的 XML 文件的片段:
<?xml version="1.0" encoding="utf-8"?>
<icapCountryData>
<Country>
<Name>Albania</Name>
<CountryCode>AL</CountryCode>
<InitiativeCount>7</InitiativeCount>
<SearchURL>~/advance_search.aspx?search=6</SearchURL>
</Country>
<Country>
<Name>Argentina</Name>
<CountryCode>AR</CountryCode>
<InitiativeCount>15</InitiativeCount>
<SearchURL>~/advance_search.aspx?search=11</SearchURL>
</Country>
... and so on ...
</icapCountryData>