Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for XL (0.02 sec)

  1. tests/test_tutorial/test_handling_errors/test_tutorial005.py

        assert response.status_code == 422, response.text
        assert response.json() == {
            "detail": [
                {
                    "type": "int_parsing",
                    "loc": ["body", "size"],
                    "msg": "Input should be a valid integer, unable to parse string as an integer",
                    "input": "XL",
                }
            ],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py39.py hl[14] *}
    
    Теперь попробуйте отправить недействительный элемент, например:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Вы получите ответ о том, что данные недействительны, содержащий следующее тело:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py39.py hl[14] *}
    
    Versuchen Sie nun, einen ungültigen Artikel zu senden:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Sie erhalten eine Response, die Ihnen sagt, dass die Daten ungültig sind und die den empfangenen Body enthält:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py39.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": [
            "body",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py39.py hl[14] *}
    
    Tente enviar um item inválido como este:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Você receberá uma *response* informando-o de que os dados são inválidos, e contendo o *body* recebido:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py39.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": [
            "body",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top