Skip to content

Commit

Permalink
add Chinese translation for docs/advanced/wsgi.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyAlsa committed Feb 3, 2022
1 parent b93f8a7 commit 1a8ccf8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions docs/zh/docs/advanced/wsgi.md
@@ -0,0 +1,37 @@
# 包含WSGI应用 - Flask,Django,和其它

您可以挂载多个WSGI应用,正如您在 [Sub Applications - Mounts](./sub-applications.md){.internal-link target=_blank}, [Behind a Proxy](./behind-a-proxy.md){.internal-link target=_blank} 中所看到的那样。

为此, 您可以使用 `WSGIMiddleware` 来包装其它框架下的 WSGI 应用,比方说:Flask,Django,等。

## 使用 `WSGIMiddleware`

您需要导入 `WSGIMiddleware`

然后使用该中间件包装您的 WSGI 应用(例如 Flask)。

之后将其挂载到某一个路径下。

```Python hl_lines="2-3 22"
{!../../../docs_src/wsgi/tutorial001.py!}
```

## 检查

现在,所有定义在 `/v1/` 路径下的请求将会被 Flask 应用处理。

其余的请求则会被 **FastAPI** 处理。

如果您使用 Uvicorn 运行应用实例并且访问 <a href="http://localhost:8000/v1/" class="external-link" target="_blank">http://localhost:8000/v1/</a>,您将会看到由 Flask 返回的响应:

```txt
Hello, World from Flask!
```

并且如果您访问 <a href="http://localhost:8000/v2" class="external-link" target="_blank">http://localhost:8000/v2</a>,您将会看到由 FastAPI 返回的响应:

```JSON
{
"message": "Hello World"
}
```
1 change: 1 addition & 0 deletions docs/zh/mkdocs.yml
Expand Up @@ -100,6 +100,7 @@ nav:
- advanced/additional-status-codes.md
- advanced/response-directly.md
- advanced/custom-response.md
- advanced/wsgi.md
- contributing.md
- help-fastapi.md
- benchmarks.md
Expand Down

0 comments on commit 1a8ccf8

Please sign in to comment.