以下代码应向浏览器发送4行文本,每秒1行。
相反,浏览器(我尝试使用Chrome和IE)等待4秒,同时显示4行。该代码段显示了两行设置标题。我试过这两个,但都不起作用。
我做错了什么?
import cherrypy
import time
class Root:
@cherrypy.expose
def index(self):
cherrypy.response.headers['Content-Type'] = 'text/event-stream' # see http://stackoverflow.com/questions/20837460/firefox-doesnt-restore-server-sent-events-connection
cherrypy.response.headers['Content-Type'] = 'text/plain' # see http://cherrypy.readthedocs.org/en/latest/advanced.html#how-streaming-output-works-with-cherrypy
def streamer():
for i in range(3):
time.sleep(1)
yield '{} {}\n'.format(time.asctime(), i+1)
print(i)
time.sleep(1)
yield '{} Done'.format(time.asctime())
return streamer()
index._cp_config = {'response.stream': True}
cherrypy.quickstart(Root())
答案 0 :(得分:1)
你没有做错任何事。这取决于浏览器。对于此类调试,请使用curl -v
或curl --trace-ascii -
之类的内容。它显示每条线路按预期超时到达。也应该使用firefox。