這裏是我的代碼:龍捲風異步請求不起作用,我的代碼有什麼問題?
class AsyncTestHandler(BaseHandler):
def testTimeOut(self, callback):
time.sleep(20)
callback("ok")
@tornado.web.asynchronous
def post(self):
user = self.get_current_user()
self.testTimeOut(callback=self.respones)
def respones(self,msg):
self.finish(msg)
我曾用「@ tornado.web.asynchronous」有回調,但要求是不同步的,怎麼能ID?
的可能重複[如何在龍捲風長輪詢工作?](http://stackoverflow.com/questions/16428231/how-does-long-polling-work-in-tornado) – dano