我正在使用 D3 通过他们的 choropleth 示例创建一些县数据。我正在使用 d3.json 选项与 jquery .ajax。我有一个 URL,当我使用它时它不会加载。经过一番研究,我发现网络服务需要一个额外的参数:
{'county': {'year': 2002,'stat': 'crime'}}
所以到这个网址的连接一直在我身上失败。
我尝试为 Web 服务添加额外的必需参数,如下所示:
d3.json("http://url/states", function (json) {
data = "{'county': {'year': 2002,'stat': 'crime'}}"
//basic d3 stuff from here below
counties.selectAll("path")
.attr("class", quantize);
dataType = json,
contentType = "application/json; charset=utf-8";
});
如果没有通话中的这些参数,我就无法连接,我不知道如何合并它们。