嗯, 我的使用的eventsource会导致我的浏览器崩溃。
我有一个显示状态表的简单页面,以及监听服务器发送事件以进行更新的javascript。我使用jquery.eventsource进行监听,jQuery版本1.6.2,我正在运行Firefox 10作为我的浏览器。在服务器上我使用的是python 2.7.2和cherrypy 3.2.2
如果我让状态页面继续运行,并且不刷新它,那么它似乎没问题。如果我多次刷新页面(最后一次计数为15),或者多次从页面导航到页面,那么大约一分钟后浏览器会崩溃。
可能导致此次崩溃的原因是什么?
我使用谷歌Chrome 17.0.963.78米试过这个,但这似乎没问题。 Chrome不会崩溃。
这是我的javascript(status.js):
jQuery(document).ready(function()
{
jQuery.eventsource(
{
label: 'status-source',
url: 'statusUpdates',
dataType: 'json',
open: function(data){},
message: function(data)
{
cell = jQuery('#'+data.htmlID);
cell.text(data.value);
}
}
);
}
);
这是HTML:
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<title>Event source test page</title>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.eventsource.js" type="text/javascript"></script>
<script src="js/status.js" type="text/javascript"></script>
</head>
<body>
<table>
<tr>
<th>name</th><th>value</th>
</tr>
<tr>
<td>Heads</td><td id="headval">4</td>
</tr>
<tr>
<td>Hands</td><td id="handval">16</td>
</tr>
<tr>
<td>Feet</td><td id="feetval">24</td>
</tr>
<tr>
<td>Eyes</td><td id="eyeval">18</td>
</tr>
<tr>
<td>Fingers</td><td id="fingerval">1</td>
</tr>
</table>
</body>
</html>
这是樱桃服务器
import cherrypy
import os
import Queue
import threading
import random
import json
class Server(object):
def __init__(self):
self.isUpdating = True
self.statusUpdateList = Queue.Queue()
self.populateQueue()
threading.Timer(1, self.queuePopulationRepetition).start()
def stop(self):
self.isUpdating = False
def queuePopulationRepetition(self):
self.populateQueue()
if self.isUpdating:
threading.Timer(1, self.queuePopulationRepetition).start()
def populateQueue(self):
self.statusUpdateList.put(json.dumps({ 'htmlID':'headval', 'value':random.randint(0,50) }))
self.statusUpdateList.put(json.dumps({ 'htmlID':'handval', 'value':random.randint(0,50) }))
self.statusUpdateList.put(json.dumps({ 'htmlID':'feetval', 'value':random.randint(0,50) }))
self.statusUpdateList.put(json.dumps({ 'htmlID':'eyeval', 'value':random.randint(0,50) }))
self.statusUpdateList.put(json.dumps({ 'htmlID':'fingerval', 'value':random.randint(0,50) }))
@cherrypy.expose
def index(self):
f = open('index.html', 'r')
indexText = '\n'.join(f.readlines())
f.close()
return indexText
@cherrypy.expose
def statusUpdates(self, _=None):
cherrypy.response.headers["Content-Type"] = "text/event-stream"
self.isViewingStatus = True
if _:
data = 'retry: 400\n'
while not self.statusUpdateList.empty():
update = self.statusUpdateList.get(False)
data += 'data: ' + update + '\n\n'
return data
else:
def content():
update = self.statusUpdateList.get(True, 400)
while update is not None:
data = 'retry: 400\ndata: ' + update + '\n\n'
update = self.statusUpdateList.get(True, 400)
yield data
return content()
statusUpdates._cp_config = {'response.stream': True, 'tools.encode.encoding':'utf-8'}
if __name__ == "__main__":
current_dir = os.path.dirname(os.path.abspath(__file__))
cherrypy.config.update({'server.socket_host': '0.0.0.0',
'server.socket_port': 8081,
})
conf = {
"/css" : {
"tools.staticdir.on": True,
"tools.staticdir.dir": os.path.join(current_dir, "css"),
},
"/js" : {
"tools.staticdir.on": True,
"tools.staticdir.dir": os.path.join(current_dir, "js"),
},
"/images" : {
"tools.staticdir.on": True,
"tools.staticdir.dir": os.path.join(current_dir, "images"),
},
}
cherrypy.quickstart(Server(), "", config=conf)
答案 0 :(得分:2)
据我所知,正是jQuery插件崩溃了浏览器。我已经重写了javascript以使用普通的EventSource
对象,这似乎解决了这个问题。
jQuery(document).ready(function()
{
var source = new EventSource('statusUpdates');
source.addEventListener('message',
function(receivedObject)
{
var data = jQuery.parseJSON(receivedObject.data);
var cell = jQuery('#'+data.htmlID);
cell.text(data.value);
var status = cell.siblings(':last');
status.removeClass();
status.addClass(data.status);
}, false);
}
);