首页  >  文章  >  后端开发  >  Tornado协程在python2.7是怎么使用的?

Tornado协程在python2.7是怎么使用的?

零下一度
零下一度原创
2017-06-23 11:27:191684浏览

错误写法

class RemoteHandler(web.RequestHandler):

    @gen.coroutine
    def get(self):
        response = httpclient('http://www.baidu.com')
        self.write(response.body)

    @gen.coroutine
    def httpClient(url):
        result = yield httpclient.AsyncHTTPClient().fetch(url)
        return result

  

按照一般的方法return会报错

需要使用 raise gen.Return(response.body) 代替return

 

官方例子

@gen.coroutine
def fetch_json(url):
    response = yield AsyncHTTPClient().fetch(url)
    raise gen.Return(json_decode(response.body))

  

In Python 3.3, this exception is no longer necessary: the <span class="pre">return</span> statement can be used directly to return a value (previously <span class="pre">yield</span> and <span class="pre">return</span> with a value could not be combined in the same function).

在python 3.3以上版本, 不在需要抛出异常,可以直接使用return直接返回值。而在之前的版本中,yield和带有返回值的return不能处于一个函数当中。

以上是Tornado协程在python2.7是怎么使用的?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn