Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for toDel (0.01 sec)

  1. docs/uk/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005.py hl[14] *}
    
    Тепер спробуйте надіслати некоректний елемент, наприклад:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    Ви отримаєте відповідь, яка повідомить Вам, які саме дані є некоректні у вашому тілі запиту:
    
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:31:13 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005.py hl[14] *}
    
    Ahora intenta enviar un ítem inválido como:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Recibirás un response que te dirá que los datos son inválidos conteniendo el body recibido:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/handling-errors.md

    Você pode utilizá-lo enquanto desenvolve seu app para conectar o *body* e debugá-lo, e assim retorná-lo ao usuário, etc.
    
    Tente enviar um item inválido como este:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Você receberá uma *response* informando-o de que a data é inválida, e contendo o *body* recebido:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005.py hl[14] *}
    
    Now try sending an invalid item like:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    You will receive a response telling you that the data is invalid containing the received body:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. docs/ja/docs/tutorial/handling-errors.md

    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    受信したボディを含むデータが無効であることを示すレスポンスが表示されます:
    
    ```JSON hl_lines="12 13 14 15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
          ],
          "msg": "value is not a valid integer",
          "type": "type_error.integer"
        }
      ],
      "body": {
        "title": "towel",
        "size": "XL"
      }
    }
    ```
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Jun 22 14:35:27 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top