Files
fastapi/docs/zh/docs/advanced/testing-websockets.md
Marcelo Trylesinski dde7bd1ceb 📝 Replace starlette.io by starlette.dev and uvicorn.org by uvicorn.dev (#14176)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2025-10-11 17:48:49 +00:00

398 B

测试 WebSockets

测试 WebSockets 也使用 TestClient

为此,要在 with 语句中使用 TestClient 连接 WebSocket。

{* ../../docs_src/app_testing/tutorial002.py hl[27:31] *}

/// note | 笔记

更多细节详见 Starlette 官档 - 测试 WebSockets

///