0

我正在寻找一种为一条路线发送多个响应的方法。问题是,从我读过的内容来看,我必须返回内容数据。例如 :

@route('/events')
def positions():      
    for i in xrange(5):        
        response.content_type = 'text/event-stream'        
        response.set_header('Cache-Control', 'no-cache')                
        now = datetime.datetime.now().time().replace(microsecond=0)        
        return  "data: %s\n\n"%now

有没有办法替换某些函数调用中的最后一行,以便我可以发送所有响应然后退出路由?

谢谢,
奥马尔。

4

1 回答 1

0

我不是 100% 确定我明白你在问什么,所以我可能没有正确回答,但这会做你想要的吗?

@route('/events')
def positions():
    output = ''
    for i in xrange(5):
        now = datetime.datetime.now().time().replace(microsecond=0)
        output += "%s\n\n"%now
    response.content_type = 'text/event-stream'                
    response.set_header('Cache-Control', 'no-cache')
    return "data: " + output
于 2012-08-01T23:47:41.103 回答