2024年06月02日 建站教程
Tornado
是一个基于事件循环的网络框架,在使用的过程中报gen.Return(\"hello\")
错误应该怎么解决?下面web建站小编给大家简单介绍一下具体解决方法!
import tornado.ioloop import tornado.gen @tornado.gen.coroutine def my_coroutine(): result = yield some_async_call() raise tornado.gen.Return(result) def handle_result(result): print(result) if __name__ == "__main__": result = tornado.ioloop.IOLoop.current().run_sync(my_coroutine) handle_result(result)
注意:在协程中返回值时候,可以使用 yield
和 gen.Return()
来达到目的。
本文链接:http://so.lmcjl.com/news/5787/