書き間違い
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は一般的な方法に従ってエラーを報告します
returnの代わりにraise gen.Return(response.body)を使用する必要があります
公式例
@gen.coroutine def fetch_json(url): response = yield AsyncHTTPClient().fetch(url) raise gen.Return(json_decode(response.body))
Python 3.3 では、この例外は不要になりました。値を持つ <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>
を同じ関数内で組み合わせることができませんでした)
Python 3.3 以降では、例外をスローする必要はなく、return を使用できます。値を直接返す場合。以前のバージョンでは、yield と戻り値を伴う return を同じ関数内に含めることはできませんでした。
以上がPython2.7でTornadoコルーチンを使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。