我正在构建一个基于python的Web服务器(是的,python是Web服务器的不错选择,但这是我唯一的选择我的目的还有另一个很好的选择,例如PHP,但我被限制为python)
我使用ProtoVis进行一些数据可视化。 (基于JavaScript的可视化工具)
如果我只是将它们复制并粘贴到测试文件中并重命名.html(假设我在其旁边提取了protovis库),则下面的代码就可以了。
如果您想尝试,请在此处https://github.com/mbostock/protovis/zipball/v3.3.1
<html>
<head>
<title>Area Chart</title>
<link type="text/css" rel="stylesheet" href="ex.css?3.2"/>
<script type="text/javascript" src="protovis/protovis.js"></script>
<style type="text/css">
#fig {
width: 430px;
height: 225px;
}
</style>
</head>
<body>
<div id="center">
<div id="fig">
<script type="text/javascript+protovis">
var data = pv.range(0, 10, .1).map(function(x) {
return {x: x, y: Math.sin(x) + Math.random() * .5 + 2};
});
/* Sizing and scales. */
var w = 400,
h = 200,
x = pv.Scale.linear(data, function(d) d.x).range(0, w),
y = pv.Scale.linear(0, 4).range(0, h);
/* The root panel. */
var vis = new pv.Panel()
.width(w)
.height(h)
.bottom(20)
.left(20)
.right(10)
.top(5);
/* Y-axis and ticks. */
vis.add(pv.Rule)
.data(y.ticks(5))
.bottom(y)
.strokeStyle(function(d) d ? "#eee" : "#000")
.anchor("left").add(pv.Label)
.text(y.tickFormat);
/* X-axis and ticks. */
vis.add(pv.Rule)
.data(x.ticks())
.visible(function(d) d)
.left(x)
.bottom(-5)
.height(5)
.anchor("bottom").add(pv.Label)
.text(x.tickFormat);
/* The area with top line. */
vis.add(pv.Area)
.data(data)
.bottom(1)
.left(function(d) x(d.x))
.height(function(d) y(d.y))
.fillStyle("rgb(121,173,210)")
.anchor("top").add(pv.Line)
.lineWidth(3);
vis.render();
</script>
</div>
</div>
</body>
</html>
但是,如果我在baseHTTPserver中返回上面的代码,它似乎不起作用。从我的调查来看,似乎是&#34; protovis / protovis.js&#34;没有正确包括在内。
if url[0] == "/chart":
self.send_response(200)
self.send_header("Content-type","text/html")
self.end_headers()
self.wfile.write(chart())
return
其中chart()函数返回上面的行。
我在CentOS 6.2下使用python 2.6工作,在baseHTTPserver中我需要做些什么特别的事情才能包含我正在使用的javascript库?相同的代码在Apache + PHP中运行良好,我只是回应它们。
有什么想法吗?
========================解决方案====================== ==
与Apache + PHP不同,BaseHTTPServer不会只提供您放入该文件夹的任何内容。您必须自己完成,如Matthew所述,或者从不同的服务器提供protovis.js(甚至可以是在不同端口上运行的SimpleHTTPServer)。 - Vasiliy Faronov
请参阅下面的Matthew Adams的说明
解决问题的方法是在do_GET()中添加另一个处理JavaScript文件的方法
if url[0] == "/protovis/protovis.js":
f = open("protovis/protovis.js","rb")
for each_line in f:
self.wfile.write(each_line)
return
解决了这个问题。
谢谢大家的解决方案,我真的很感激
答案 0 :(得分:2)
确保使用BaseHTTPServer服务protovis/protovis.js
。基本上,当浏览器读取它获得的html输出时,浏览器将“看到”行<script type="text/javascript" src="protovis/protovis.js"></script>
,然后然后请求服务器实际发送protovis / protovis.js文件。我没有在github下载中看到python代码,因此我无法在代码的上下文中具体说明如何执行此操作,但请查看SimpleHTTPRequestHandler
。使用它,您可以添加do_GET()
方法,让服务器在请求时发送protovis/protovis.js
(即self.path
为protovis/protovis.js
时)。