写法1:
async with api.register_update_notify(order) as update_chan:
async for _ in update_chan:
if not order.is_online:
break
## 执行…..
写法2:
async with api.register_update_notify(order) as update_chan:
while not order.is_online:
await update_chan.recv()
## 执行…..
想问一下 以上两种写法 是不是一样的?
枢之 陈 已回答的问题 2020年1月17日