Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 644 for patch (0.17 sec)

  1. docs/de/docs/tutorial/body-updates.md

    ## Teilweises Ersetzen mit `PATCH`
    
    Sie können auch die <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH" class="external-link" target="_blank">HTTP `PATCH`</a> Operation verwenden, um Daten *teilweise* zu ersetzen.
    
    Das bedeutet, sie senden nur die Daten, die Sie aktualisieren wollen, der Rest bleibt unverändert.
    
    !!! note "Hinweis"
        `PATCH` wird seltener verwendet und ist weniger bekannt als `PUT`.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:26:37 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/versions.md

    FastAPI também segue a convenção de que qualquer alteração de versão "PATCH" é para correção de bugs e alterações não significativas.
    
    !!! tip "Dica"
        O "PATCH" é o último número, por exemplo, em `0.2.3`, a versão PATCH é `3`.
    
    Logo, você deveria conseguir fixar a versão, como:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 29 20:14:40 GMT 2021
    - 3.8K bytes
    - Viewed (0)
  3. docs_src/body_updates/tutorial002_py39.py

        "baz": {"name": "Baz", "description": None, "price": 50.2, "tax": 10.5, "tags": []},
    }
    
    
    @app.get("/items/{item_id}", response_model=Item)
    async def read_item(item_id: str):
        return items[item_id]
    
    
    @app.patch("/items/{item_id}", response_model=Item)
    async def update_item(item_id: str, item: Item):
        stored_item_data = items[item_id]
        stored_item_model = Item(**stored_item_data)
        update_data = item.dict(exclude_unset=True)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 1K bytes
    - Viewed (0)
  4. docs/pl/docs/tutorial/first-steps.md

    Jedna z:
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...i te bardziej egzotyczne:
    
    * `OPTIONS`
    * `HEAD`
    * `PATCH`
    * `TRACE`
    
    W protokole HTTP można komunikować się z każdą ścieżką za pomocą jednej (lub więcej) "metod".
    
    ---
    
    Podczas tworzenia API zwykle używasz tych metod HTTP do wykonania określonej akcji.
    
    Zazwyczaj używasz:
    
    * `POST`: do tworzenia danych.
    * `GET`: do odczytywania danych.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  5. tests/test_extra_routes.py

                        "summary": "Patch Item",
                        "operationId": "patch_item_items__item_id__patch",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Item Id", "type": "string"},
                                "name": "item_id",
                                "in": "path",
                            }
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 13.7K bytes
    - Viewed (0)
  6. docs/vi/docs/tutorial/first-steps.md

    "Toán tử" ở đây được nhắc tới là một trong các "phương thức" HTTP.
    
    Một trong những:
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...và một trong những cái còn lại:
    
    * `OPTIONS`
    * `HEAD`
    * `PATCH`
    * `TRACE`
    
    Trong giao thức HTTP, bạn có thể giao tiếp trong mỗi đường dẫn sử dụng một (hoặc nhiều) trong các "phương thức này".
    
    ---
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Sep 02 15:44:17 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-updates.md

    ## Partial updates with `PATCH`
    
    You can also use the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH" class="external-link" target="_blank">HTTP `PATCH`</a> operation to *partially* update data.
    
    This means that you can send only the data that you want to update, leaving the rest intact.
    
    !!! note
        `PATCH` is less commonly used and known than `PUT`.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/body-updates.md

    &amp; 📊 🔜 🖊 ⏮️ 👈 "🆕" `tax` `10.5`.
    
    ## 🍕 ℹ ⏮️ `PATCH`
    
    👆 💪 ⚙️ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH" class="external-link" target="_blank">🇺🇸🔍 `PATCH`</a> 🛠️ *🍕* ℹ 💽.
    
    👉 ⛓ 👈 👆 💪 📨 🕴 💽 👈 👆 💚 ℹ, 🍂 🎂 🐣.
    
    !!! note
        `PATCH` 🌘 🛎 ⚙️ &amp; 💭 🌘 `PUT`.
    
         &amp; 📚 🏉 ⚙️ 🕴 `PUT`, 🍕 ℹ.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/body-updates.md

    すでに格納されている属性`"tax": 20.2`を含まないため、入力モデルのデフォルト値は`"tax": 10.5`です。
    
    そして、データはその「新しい」`10.5`の`tax`と共に保存されます。
    
    ## `PATCH`による部分的な更新
    
    また、<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH" class="external-link" target="_blank">HTTPの`PATCH`</a>操作でデータを*部分的に*更新することもできます。
    
    つまり、更新したいデータだけを送信して、残りはそのままにしておくことができます。
    
    !!! note "備考"
        `PATCH`は`PUT`よりもあまり使われておらず、知られていません。
    
        また、多くのチームは部分的な更新であっても`PUT`だけを使用しています。
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  10. docs/es/docs/deployment/versions.md

    !!! tip
        El <abbr title="parche">"PATCH"</abbr> es el último número, por ejemplo, en `0.2.3`, la <abbr title="versiones de parche">PATCH version</abbr> es `3`.
    
    Entonces, deberías fijar la versión así:
    
    ```txt
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Feb 07 11:55:38 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top