- 在 DRF 中实现通道功能时,我
WSGI
从ASGI
. - 所以目前我在同一个项目->同一个应用程序中有 REST API 和通道。
- 频道正在工作,现有的 API 也可以使用,但其中包含的 API除外
async def
我在下面收到错误-
RuntimeError: You cannot use AsyncToSync in the same thread as an async event loop - just await the async function directly.
由于此方法在调用函数时view
不是async
我不能调用的await
。我假设WSGI->ASGI
迁移是这次中断的原因。
请帮忙!!