我在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)
答案 0 :(得分:4)
您无法将输出刷新到浏览器。当您的处理程序返回时,App Engine会立即发送整个响应。
参考:http://code.google.com/appengine/docs/python/runtime.html#Responses