我是一名软件工程师,但我从未做过任何网络开发。
这次,我负责制作一个仪表板来分析一些性能统计数据。
我首先尝试从头开始学习Django来完成这项任务,但最终却浪费了几周时间。
我开始使用cherrypy构建一些小应用程序,接下来是我到目前为止编写的代码。它是Ajax的一些代码和MySQL查询的一些代码的大杂烩。
特别是,函数submit222()
与此项目不太相关。
在以下代码中,成功建立了与数据库的连接和查询。
res
包含多个时间戳(x轴)和请求数(y轴)的行。
我想在res
中传递这些数据,以便我可以在网页中显示时间戳和请求数量的图表。
使用Google Chart(https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart)
的图表我目前没有工作视图文件,我找不到合适的例子来引用解决这个问题。
任何人都可以为从该python代码中获取res
的视图编写一个简单的Javascript并构建一个图表(或者如果有人解释如何将res
传递给Javascript那么太多了吗?)
我真的试图自己解决这个问题,没有任何人的帮助,我认为我不能解决这个问题。
谢谢。
MEDIA_DIR = os.path.join(os.path.abspath("."), u"media")
def connect(thread_index):
# Create a connection and store it in the current thread
cherrypy.thread_data.db = MySQLdb.connect(some db, some id, some password, 'storm')
# Tell CherryPy to call "connect" for each thread, when it starts up
cherrypy.engine.subscribe('start_thread', connect)
class AjaxApp(object):
@cherrypy.expose
def index(self):
# Sample page that displays the number of records in "table"
# Open a cursor, using the DB connection for the current thread
c = cherrypy.thread_data.db.cursor()
query = """select refresh_time,
num_requests
from model group by refresh_time"""
c.execute(query)
res = c.fetchall()
c.close()
return open(os.path.join(MEDIA_DIR, u'index.html'))
@cherrypy.expose
def submit222(self, name):
cherrypy.response.headers['Content-Type'] = 'application/json'
return simplejson.dumps(dict(title="Hello, %s" % name))
config = {'/media':
{'tools.staticdir.on': True,
'tools.staticdir.dir': MEDIA_DIR,
}
}
def open_page():
webbrowser.open("http://127.0.0.1:8080/")
cherrypy.engine.subscribe('start', open_page)
cherrypy.tree.mount(AjaxApp(), '/', config=config)
cherrypy.engine.start()
答案 0 :(得分:2)
如果这不是你想要的,请告诉我。开始的Web编程很难概念化客户端和服务器端会发生什么。挂在那里!
import cherrypy
import os
import json
MEDIA_DIR = os.path.join(os.path.abspath("."), "media")
class AjaxApp(object):
@cherrypy.expose
def index(self):
# Sample page that displays the number of records in "table"
# Open a cursor, using the DB connection for the current thread
return """
<html>
<head>
<script lang="javascript">
function GetData()
{
// code for IE7+, Firefox, Chrome, Opera, Safari
if(window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
else// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4 && xmlhttp.status==200)
{
var someData_notJSON = JSON.parse(xmlhttp.responseText);
document.getElementById('Data').innerHTML = 'asdf: ' + someData_notJSON.asdf + ' and asdfw: ' + someData_notJSON.asdfw;
}
}
xmlhttp.open("GET","/submit222", true);
xmlhttp.send();
}
</script>
</head>
<body onload="GetData();">
<div id="Data">hi</div>
</body>
</html>
"""
@cherrypy.expose
def submit222(self):
# get data from db
res = { 'asdf': 1,
'asdfw' : 3 }
return json.dumps(res)
config = {'/media':
{'tools.staticdir.on': True,
'tools.staticdir.dir': MEDIA_DIR,
}
}
cherrypy.tree.mount(AjaxApp(), '/', config=config)
cherrypy.engine.start()
希望这有帮助。