- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 125 for toXml (0.02 seconds)
-
docs/uk/docs/editor-support.md
## Можливості { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:25:54 GMT 2026 - 3.8K bytes - Click Count (0) -
docs/de/docs/editor-support.md
## Funktionen { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/ru/docs/editor-support.md
## Возможности { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/es/docs/editor-support.md
## Funcionalidades { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/fr/docs/editor-support.md
## Fonctionnalités { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:33:45 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/ko/docs/editor-support.md
### 애플리케이션 자동 감지 { #application-discovery } 기본적으로 이 확장은 작업 공간에서 `FastAPI()`를 생성하는 파일을 스캔하여 FastAPI 애플리케이션을 자동으로 감지합니다. 프로젝트 구조상 자동 감지가 어려운 경우, `pyproject.toml`의 `[tool.fastapi]` 항목이나 VS Code 설정 `fastapi.entryPoint`에 모듈 표기(예: `myapp.main:app`)로 엔트리포인트를 지정할 수 있습니다. ## 기능 { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:56:39 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/bigger-applications.md
这是因为我们想要在 OpenAPI 模式和用户界面中包含它们的*路径操作*。 由于我们不能仅仅隔离它们并独立于其余部分来「挂载」它们,因此*路径操作*是被「克隆的」(重新创建),而不是直接包含。 /// ## 在 `pyproject.toml` 中配置 `entrypoint` { #configure-the-entrypoint-in-pyproject-toml } 因为你的 FastAPI `app` 对象位于 `app/main.py` 中,你可以在 `pyproject.toml` 中这样配置 `entrypoint`: ```toml [tool.fastapi] entrypoint = "app.main:app" ``` 等价于像这样导入: ```python from app.main import app ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 19.5K bytes - Click Count (0) -
docs/zh/docs/editor-support.md
### 应用发现 { #application-discovery } 默认情况下,扩展会通过扫描实例化了 `FastAPI()` 的文件,自动发现工作区中的 FastAPI 应用。如果你的项目结构无法自动检测,你可以通过 `pyproject.toml` 中的 `[tool.fastapi]` 或 VS Code 设置项 `fastapi.entryPoint` 来指定入口点,使用模块表示法(例如 `myapp.main:app`)。 ## 功能 { #features } - **Path Operation 资源管理器** - 侧边栏树状视图展示应用中的所有 <dfn title="路由,端点">*路径操作*</dfn>。点击可跳转至任一路由或 APIRouter 的定义。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:29:48 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/zh-hant/docs/editor-support.md
### 應用程式探索 { #application-discovery } 預設情況下,擴充套件會自動在你的工作區中,掃描會實例化 `FastAPI()` 的檔案,以發現 FastAPI 應用程式。若自動偵測無法因應你的專案結構,你可以在 `pyproject.toml` 的 `[tool.fastapi]` 中,或在 VS Code 設定的 `fastapi.entryPoint` 中,使用模組標記法(例如 `myapp.main:app`)指定入口點。 ## 功能 { #features } - **Path Operation Explorer** - 顯示應用程式中所有 <dfn title="路由、端點">*路徑操作*</dfn> 的側邊欄樹狀檢視。點擊即可跳至任一路由或 router 定義。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/ja/docs/tutorial/bigger-applications.md
完全に分離して独立に「マウント」できないため、*path operations* は直接取り込まれるのではなく「クローン(再作成)」されます。 /// ## `pyproject.toml` の `entrypoint` を設定 { #configure-the-entrypoint-in-pyproject-toml } FastAPI の `app` オブジェクトは `app/main.py` にあるので、`pyproject.toml` で `entrypoint` を次のように設定できます: ```toml [tool.fastapi] entrypoint = "app.main:app" ``` これは次のようにインポートするのと同等です: ```python from app.main import appCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 22.8K bytes - Click Count (0)