Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 605 for imagem (0.04 sec)

  1. docs_src/body_nested_models/tutorial008_py39.py

    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    @app.post("/images/multiple/")
    async def create_multiple_images(images: list[Image]):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 248 bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## 단일 *경로 작동* 지원중단
    
    단일 *경로 작동*을 없애지 않고 <abbr title="구식, 사용하지 않는것이 권장됨">지원중단</abbr>을 해야한다면, `deprecated` 매개변수를 전달하면 됩니다.
    
    {* ../../docs_src/path_operation_configuration/tutorial006.py hl[16] *}
    
    대화형 문서에 지원중단이라고 표시됩니다.
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    지원중단된 경우와 지원중단 되지 않은 경우에 대한 *경로 작동*이 어떻게 보이는 지 확인하십시오.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body_nested_models/test_tutorial008.py

        ]
        response = client.post("/images/multiple", json=data)
        assert response.status_code == 200, response.text
        assert response.json() == data
    
    
    def test_post_invalid_list_item(client: TestClient):
        data = [{"url": "not a valid url", "name": "Example"}]
        response = client.post("/images/multiple", json=data)
        assert response.status_code == 422, response.text
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/generate-clients.md

    现在您可以导入并使用客户端代码,它可能看起来像这样,请注意,您可以为这些方法使用自动补全:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    您还将自动补全要发送的数据:
    
    <img src="/img/tutorial/generate-clients/image03.png">
    
    /// tip
    
    请注意, `name` 和 `price` 的自动补全,是通过其在`Item`模型(FastAPI)中的定义实现的。
    
    ///
    
    如果发送的数据字段不符,你也会看到编辑器的错误提示:
    
    <img src="/img/tutorial/generate-clients/image04.png">
    
    响应(response)对象也拥有自动补全:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/concepts/image01.png

    image01.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Oct 01 20:44:19 UTC 2021
    - 121.9K bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/bigger-applications/image01.png

    image01.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Nov 29 17:32:18 UTC 2020
    - 72.8K bytes
    - Viewed (0)
  7. docs/en/docs/img/tutorial/body/image01.png

    image01.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 54.2K bytes
    - Viewed (0)
  8. docs/en/docs/img/tutorial/extending-openapi/image02.png

    image02.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Jan 16 19:26:24 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. docs/en/docs/img/tutorial/openapi-callbacks/image01.png

    image01.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 97K bytes
    - Viewed (0)
  10. docs/en/docs/img/tutorial/path-operation-advanced-configuration/image01.png

    image01.png...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Jul 29 20:01:13 UTC 2021
    - 66.5K bytes
    - Viewed (0)
Back to top