我似乎无法获取我的变量来引用本地json文件而不是当前的远程json文件。我希望能够将Javascript设置为读取本地test.json文件而不是远程resturl url。我想将当前的resturl变量更改为它下面的注释resturl。如果您需要更多信息,请与我们联系。脚本基于:https://github.com/kenklin/aws-price-comparison-chart
function update() {
// Construct REST URL
var resturl = "http://p1software-eb1.elasticbeanstalk.com/awsec2offering/api"
+ "/" + d3.select("#availabilityZone").node().value // us-east-1a
+ "/" + d3.select("#productDescription").node().value // linux
+ "/" + d3.select("#offeringType").node().value // heavy
+ "/" + d3.select("#instanceType1").node().value // t1.micro
+ "," + d3.select("#instanceType2").node().value; // m1.small
// resturl = "test.json"
// resturl = "http://localhost:8080/awsec2offering/awsec2offering/api/us-east-1a/linux/heavy/t1.micro,m1.small."
d3.json(resturl, function(error, json) {
data = json.ec2offerings;
// Assign colors to each unique name.
var color = d3.scale.category10();
color.domain(data.map(function(p) { return createUniqueName(p); }));
// Coerce the data to numbers.
data.forEach(function(d) {
d.month = +d.month;
});