在GAE中刷新输出?

时间:2011-08-28 22:36:22

标签: python google-app-engine

我在GAE中尝试了两种不同的方法将输出刷新到浏览器:

from time import sleep
import sys;
print ""
print "Output"
sys.stdout.flush()
sleep(10)

from time import sleep
self.response.out.write("Output")
self.response.out.flush()
sleep(10)

1 个答案:

答案 0 :(得分:4)

您无法将输出刷新到浏览器。当您的处理程序返回时,App Engine会立即发送整个响应。

参考:http://code.google.com/appengine/docs/python/runtime.html#Responses