我正在使用D3.js
中使用d3.json
函数在Rails中加载flare.json
的示例。
我的flare.json
文件与我的视图位于同一个文件夹中。当我加载页面时,我收到此错误:
ActionController::RoutingError (No route matches [GET] "/flare.json"):
如何告诉rails将此请求路由到flare.json文件?
这是预先加载的代码:
d3.json("flare.json", function(error, root) {
var node = svg.selectAll(".node")
.data(bubble.nodes(classes(root))
.filter(function(d) { return !d.children; }))
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });
node.append("title")
.text(function(d) { return d.className + ": " + format(d.value); });
node.append("circle")
.attr("r", function(d) { return d.r; })
.style("fill", function(d) { return color(d.packageName); });
node.append("text")
.attr("dy", ".3em")
.style("text-anchor", "middle")
.text(function(d) { return d.className.substring(0, d.r / 3); });
});
谢谢!
答案 0 :(得分:0)
在路线中添加条目:
match "flare" => "some_controller#index"
在控制器中:
def index
respond_to do |format|
format.json { render :json => { 1 => "First", 2 => "Second"} }
end
end