錯誤寫法 按照一般的方法return會報錯 需要使用 raise gen.Return(response.body) 代替return 官方例子 In Python 3.3, this exception is no longer necessary: the return statement ca ...
錯誤寫法
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 return
statement can be used directly to return a value (previously yield
and return
with a value could not be combined in the same function).
在python 3.3以上版本, 不在需要拋出異常,可以直接使用return直接返回值。而在之前的版本中,yield和帶有返回值的return不能處於一個函數當中。