Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 21 (0.22 sec)

  1. docs/em/docs/tutorial/bigger-applications.md

    , 🖼, 🎏 🏗 💪 ⚙️ 🎏 `APIRouter` ⏮️ 🎏 🤝 👩‍🔬.
    
    ### 🔌 *➡ 🛠️*
    
    👥 💪 🚮 *➡ 🛠️* 🔗 `FastAPI` 📱.
    
    📥 👥 ⚫️... 🎦 👈 👥 💪 🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../../docs_src/bigger_applications/app/main.py!}
    ```
    
    & ⚫️ 🔜 👷 ☑, 👯‍♂️ ⏮️ 🌐 🎏 *➡ 🛠️* 🚮 ⏮️ `app.include_router()`.
    
    !!! info "📶 📡 ℹ"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/bigger-applications.md

    ### Eine *Pfadoperation* hinzufügen
    
    Wir können *Pfadoperationen* auch direkt zur `FastAPI`-App hinzufügen.
    
    Hier machen wir es ... nur um zu zeigen, dass wir es können 🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../../docs_src/bigger_applications/app/main.py!}
    ```
    
    und es wird korrekt funktionieren, zusammen mit allen anderen *Pfadoperationen*, die mit `app.include_router()` hinzugefügt wurden.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:27:59 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/bigger-applications.md

    ### Include a *path operation*
    
    We can also add *path operations* directly to the `FastAPI` app.
    
    Here we do it... just to show that we can 🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../../docs_src/bigger_applications/app/main.py!}
    ```
    
    and it will work correctly, together with all the other *path operations* added with `app.include_router()`.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/bigger-applications.md

    但这只会影响我们应用中的 `APIRouter`,而不会影响使用它的任何其他代码。
    
    因此,举例来说,其他项目能够以不同的身份认证方法使用相同的 `APIRouter`。
    
    ### 包含一个*路径操作*
    
    我们还可以直接将*路径操作*添加到 `FastAPI` 应用中。
    
    这里我们这样做了...只是为了表明我们可以做到🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../../docs_src/bigger_applications/app/main.py!}
    ```
    
    它将与通过 `app.include_router()` 添加的所有其他*路径操作*一起正常运行。
    
    !!! info "特别的技术细节"
        **注意**:这是一个非常技术性的细节,你也许可以**直接跳过**。
    
        ---
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.5K bytes
    - Viewed (0)
Back to top