Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for deepLinking (0.05 sec)

  1. docs/pt/docs/how-to/configure-swagger-ui.md

    {* ../../fastapi/openapi/docs.py ln[9:24] hl[18:24] *}
    
    Você pode substituir qualquer um deles definindo um valor diferente no argumento `swagger_ui_parameters`.
    
    Por exemplo, para desabilitar `deepLinking` você pode passar essas configurações para `swagger_ui_parameters`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial003_py39.py hl[3] *}
    
    ## Outros parâmetros da UI do Swagger { #other-swagger-ui-parameters }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. fastapi/openapi/docs.py

            Default configurations for Swagger UI.
    
            You can use it as a template to add any other configurations needed.
            """
        ),
    ] = {
        "dom_id": "#swagger-ui",
        "layout": "BaseLayout",
        "deepLinking": True,
        "showExtensions": True,
        "showCommonExtensions": True,
    }
    
    
    def get_swagger_ui_html(
        *,
        openapi_url: Annotated[
            str,
            Doc(
                """
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top