Search Options

Results per page
Sort
Preferred Languages
Advance

Results 391 - 400 of 475 for tiap (0.05 sec)

  1. docs/vi/docs/python-types.md

    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    /// note
    
    Nếu bạn là một chuyên gia về Python, và bạn đã biết mọi thứ về gợi ý kiểu dữ liệu, bỏ qua và đi tới chương tiếp theo.
    
    ///
    
    ## Động lực
    
    Hãy bắt đầu với một ví dụ đơn giản:
    
    ```Python
    {!../../docs_src/python_types/tutorial001.py!}
    ```
    
    Kết quả khi gọi chương trình này:
    
    ```
    John Doe
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/generate-clients.md

    <img src="/img/tutorial/generate-clients/image02.png">
    
    You will also get autocompletion for the payload to send:
    
    <img src="/img/tutorial/generate-clients/image03.png">
    
    /// tip
    
    Notice the autocompletion for `name` and `price`, that was defined in the FastAPI application, in the `Item` model.
    
    ///
    
    You will have inline errors for the data that you send:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/security/oauth2-jwt.md

    ここでは、推奨されているものを使用します:<a href="https://cryptography.io/" class="external-link" target="_blank">pyca/cryptography</a>。
    
    /// tip | "豆知識"
    
    このチュートリアルでは以前、<a href="https://pyjwt.readthedocs.io/" class="external-link" target="_blank">PyJWT</a>を使用していました。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (1)
  4. docs/en/mkdocs.yml

      pymdownx.tilde:
    
      # pymdownx blocks
      pymdownx.blocks.admonition:
        types:
        - note
        - attention
        - caution
        - danger
        - error
        - tip
        - hint
        - warning
        # Custom types
        - info
        - check
      pymdownx.blocks.details:
      pymdownx.blocks.tab:
        alternate_style: True
    
      # Other extensions
      mdx_include:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 20:28:02 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. docs/ja/docs/tutorial/body-updates.md

    * データをDBに保存します。
    * 更新されたモデルを返します。
    
    ```Python hl_lines="30 31 32 33 34 35 36 37"
    {!../../docs_src/body_updates/tutorial002.py!}
    ```
    
    /// tip | "豆知識"
    
    実際には、HTTPの`PUT`操作でも同じテクニックを使用することができます。
    
    しかし、これらのユースケースのために作成されたので、ここでの例では`PATCH`を使用しています。
    
    ///
    
    /// note | "備考"
    
    入力モデルがまだ検証されていることに注目してください。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/handling-errors.md

    }
    ```
    
    ✋️ 🚥 👩‍💻 📨 `http://example.com/items/bar` (🚫-🚫 `item_id` `"bar"`), 👈 👩‍💻 🔜 📨 🇺🇸🔍 👔 📟 4️⃣0️⃣4️⃣ ("🚫 🔎" ❌), &amp; 🎻 📨:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip
    
    🕐❔ 🙋‍♀ `HTTPException`, 👆 💪 🚶‍♀️ 🙆 💲 👈 💪 🗜 🎻 🔢 `detail`, 🚫 🕴 `str`.
    
    👆 💪 🚶‍♀️ `dict`, `list`, ♒️.
    
    👫 🍵 🔁 **FastAPI** &amp; 🗜 🎻.
    
    ///
    
    ## 🚮 🛃 🎚
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/first-steps.md

    ///
    
    다른 작동도 사용할 수 있습니다:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    흔히 사용되지 않는 것들도 있습니다:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip | "팁"
    
    각 작동(HTTP 메소드)을 원하는 대로 사용해도 됩니다.
    
    **FastAPI**는 특정 의미를 강제하지 않습니다.
    
    여기서 정보는 지침서일뿐 강제사항이 아닙니다.
    
    예를 들어 GraphQL을 사용하는 경우, 일반적으로 `POST` 작동만 사용하여 모든 행동을 수행합니다.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. docs/ja/docs/deployment/concepts.md

    それでも、ある箇所でエラーが発生したからといって、アプリケーションを停止させたままにしたくないでしょう。 少なくとも壊れていない*パスオペレーション*については、**実行し続けたい**はずです。
    
    ### クラッシュ後の再起動
    
    しかし、実行中の**プロセス**をクラッシュさせるような本当にひどいエラーの場合、少なくとも2〜3回ほどプロセスを**再起動**させる外部コンポーネントが必要でしょう。
    
    /// tip
    
    ...とはいえ、アプリケーション全体が**すぐにクラッシュする**のであれば、いつまでも再起動し続けるのは意味がないでしょう。しかし、その場合はおそらく開発中か少なくともデプロイ直後に気づくと思われます。
    
    そこで、**将来**クラッシュする可能性があり、それでも再スタートさせることに意味があるような、主なケースに焦点を当ててみます。
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/first-steps.md

    ///
    
    👆 💪 ⚙️ 🎏 🛠️:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    &amp; 🌅 😍 🕐:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip
    
    👆 🆓 ⚙️ 🔠 🛠️ (🇺🇸🔍 👩‍🔬) 👆 🎋.
    
    **FastAPI** 🚫 🛠️ 🙆 🎯 🔑.
    
    ℹ 📥 🎁 📄, 🚫 📄.
    
    🖼, 🕐❔ ⚙️ 🕹 👆 🛎 🎭 🌐 🎯 ⚙️ 🕴 `POST` 🛠️.
    
    ///
    
    ### 🔁 4️⃣: 🔬 **➡ 🛠️ 🔢**
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/dependencies/classes-as-dependencies.md

    ```
    
    ////
    
    //// tab | Python 3.6+
    
    ```Python hl_lines="19"
    {!> ../../docs_src/dependencies/tutorial004.py!}
    ```
    
    ////
    
    ... **FastAPI** 会知道怎么处理。
    
    /// tip
    
    如果这看起来更加混乱而不是更加有帮助,那么请忽略它,你不*需要*它。
    
    这只是一个快捷方式。因为 **FastAPI** 关心的是帮助您减少代码重复。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top