Tornado协程在python2.7如何返回值(实现方法)
错误写法
classRemoteHandler(web.RequestHandler):
@gen.coroutine
defget(self):
response=httpclient('http://www.baidu.com')
self.write(response.body)
@gen.coroutine
defhttpClient(url):
result=yieldhttpclient.AsyncHTTPClient().fetch(url)
returnresult
按照一般的方法return会报错
需要使用raisegen.Return(response.body)代替return
官方例子
@gen.coroutine deffetch_json(url): response=yieldAsyncHTTPClient().fetch(url) raisegen.Return(json_decode(response.body))
InPython3.3,thisexceptionisnolongernecessary:thereturnstatementcanbeuseddirectlytoreturnavalue(previouslyyieldandreturnwithavaluecouldnotbecombinedinthesamefunction).
在python3.3以上版本,不在需要抛出异常,可以直接使用return直接返回值。而在之前的版本中,yield和带有返回值的return不能处于一个函数当中。
以上这篇Tornado协程在python2.7如何返回值(实现方法)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。