作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个由 Phoenix 框架提供支持的网络应用程序。我试图让一个简单的 d3 折线图工作,但不知何故 d3 无法找到我试图加载到 JS 文件中以绘制图形的静态 data.tsv
文件。有没有一种特定的方法可以使用 Phoenix Elixir 来完成?
(function LineGraph() {
var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left: 50},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom,
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var parseTime = d3.timeParse("%d-%b-%y");
var x = d3.scaleTime()
.rangeRound([0, width]);
var y = d3.scaleLinear()
.rangeRound([height, 0]);
var line = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.close); });
d3.tsv("../data/data.tsv", function(d) {
d.date = parseTime(d.date);
d.close = +d.close;
return d;
}, function(error, data) {
if (error) throw error;
x.domain(d3.extent(data, function(d) { return d.date; }));
y.domain(d3.extent(data, function(d) { return d.close; }));
g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));
g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y))
.append("text")
.attr("fill", "#000")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.style("text-anchor", "end")
.text("Price ($)");
g.append("path")
.datum(data)
.attr("class", "line")
.attr("d", line);
});
})();
我已经尝试在 js 目录、数据目录以及应用程序的 web 目录之外创建 data.tsv
文件。
每次我加载应用程序时,它都会尝试向 data.tsv
发出 XHR 请求并返回 404。
如何加载静态文件来绘制图形?
最佳答案
这类静态文件通常存放在priv/static
中。一种方法是将 data.tsv
放在 priv/static/data/data.tsv
中,然后将 data
添加到Plug.Static
应该服务的目录列表,通过像这样更改 lib/my_app/endpoint.txt
:
plug Plug.Static,
at: "/", from: :my_app, gzip: false,
- only: ~w(css fonts images js favicon.ico robots.txt)
+ only: ~w(css fonts images js favicon.ico robots.txt data)
关于javascript - Phoenix : How to load a static tsv file for d3 graph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40270508/
我是一名优秀的程序员,十分优秀!