- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 914 for Tip (0.25 seconds)
-
docs/ko/docs/advanced/path-operation-advanced-configuration.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 7.6K bytes - Click Count (0) -
docs/en/docs/tutorial/bigger-applications.md
│ ├── main.py │ ├── dependencies.py │ └── routers │ │ ├── __init__.py │ │ ├── items.py │ │ └── users.py │ └── internal │ ├── __init__.py │ └── admin.py ``` /// tip There are several `__init__.py` files: one in each directory or subdirectory. This is what allows importing code from one file into another. For example, in `app/main.py` you could have a line like: ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 19.2K bytes - Click Count (0) -
docs/ko/docs/advanced/behind-a-proxy.md
"paths": { // 여기에 다른 내용이 더 있습니다 } } ``` /// tip | 팁 `root_path`에서 가져온 값인 `/api/v1`의 `url` 값을 가진, 자동 생성된 server에 주목하세요. /// [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs)의 docs UI에서는 다음처럼 보입니다: <img src="/img/tutorial/behind-a-proxy/image03.png"> /// tip | 팁 docs UI는 선택한 server와 상호작용합니다. /// /// note | 기술 세부사항
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 17.9K bytes - Click Count (0) -
docs/zh/docs/how-to/graphql.md
# GraphQL { #graphql } 由于 **FastAPI** 基于 **ASGI** 标准,因此很容易集成任何也兼容 ASGI 的 **GraphQL** 库。 你可以在同一个应用中将常规的 FastAPI 路径操作与 GraphQL 结合使用。 /// tip | 提示 **GraphQL** 解决一些非常特定的用例。 与常见的 **Web API** 相比,它有各自的**优点**和**缺点**。 请确保评估在你的用例中,这些**好处**是否足以弥补这些**缺点**。 🤓 /// ## GraphQL 库 { #graphql-libraries } 以下是一些支持 **ASGI** 的 **GraphQL** 库。你可以将它们与 **FastAPI** 一起使用: * [Strawberry](https://strawberry.rocks/) 🍓Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/graphql.md
# GraphQL { #graphql } 由於 FastAPI 基於 ASGI 標準,整合任何與 ASGI 相容的 GraphQL 函式庫都很容易。 你可以在同一個應用程式中同時使用一般的 FastAPI 路徑操作 (path operation) 與 GraphQL。 /// tip GraphQL 解決某些非常特定的使用情境。 與一般的 Web API 相比,它有優點也有缺點。 請確認在你的使用情境中,這些效益是否足以彌補其限制。 🤓 /// ## GraphQL 函式庫 { #graphql-libraries } 下面是支援 ASGI 的部分 GraphQL 函式庫,你可以與 FastAPI 一起使用: * [Strawberry](https://strawberry.rocks/) 🍓Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/en/docs/tutorial/security/index.md
It is not very popular or used nowadays. OAuth2 doesn't specify how to encrypt the communication, it expects you to have your application served with HTTPS. /// tip In the section about **deployment** you will see how to set up HTTPS for free, using Traefik and Let's Encrypt. /// ## OpenID Connect { #openid-connect }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 10:49:48 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
You should do it after adding all your *path operations*. {* ../../docs_src/path_operation_advanced_configuration/tutorial002_py310.py hl[2, 12:21, 24] *} /// tip If you manually call `app.openapi()`, you should update the `operationId`s before that. /// /// warning If you do this, you have to make sure each one of your *path operation functions* has a unique name.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7.1K bytes - Click Count (0) -
docs/en/docs/reference/request.md
You can import it directly from `fastapi`: ```python from fastapi import Request ``` /// tip When you want to define dependencies that should be compatible with both HTTP and WebSockets, you can define a parameter that takes an `HTTPConnection` instead of a `Request` or a `WebSocket`. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 652 bytes - Click Count (0) -
docs/en/docs/advanced/openapi-callbacks.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7.7K bytes - Click Count (0) -
docs/zh/docs/advanced/index.md
# 高级用户指南 { #advanced-user-guide } ## 附加功能 { #additional-features } 主要的[教程 - 用户指南](../tutorial/index.md)足以带你了解 **FastAPI** 的所有主要特性。 在接下来的章节中,你将看到其他选项、配置和附加功能。 /// tip | 提示 接下来的章节**不一定是“高级”的**。 对于你的用例,解决方案很可能就在其中之一。 /// ## 先阅读教程 { #read-the-tutorial-first } 仅凭主要[教程 - 用户指南](../tutorial/index.md)中的知识,你已经可以使用 **FastAPI** 的大多数功能。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 679 bytes - Click Count (0)