Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 768 for Img (0.29 seconds)

  1. docs/zh-hant/docs/tutorial/dependencies/classes-as-dependencies.md

    commons = Depends(CommonQueryParams)
    ```
    
    ////
    
    ...像是:
    
    {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *}
    
    但仍建議宣告型別,這樣你的編輯器就知道會以何種型別作為參數 `commons` 傳入,進而幫助你做自動完成、型別檢查等:
    
    <img src="/img/tutorial/dependencies/image02.png">
    
    ## 捷徑 { #shortcut }
    
    不過你會發現這裡有些重複程式碼,我們寫了兩次 `CommonQueryParams`:
    
    //// tab | Python 3.10+
    
    ```Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/profile/index.jsp

    <script src="${fe:url('/css/admin/respond.min.js')}"></script>
    <![endif]-->
    </head>
    <body class="hold-transition login-page">
    	<div class="login-box">
    		<div class="login-logo">
    			<la:link href="/">
    				<img src="${fe:url('/images/logo-top.png')}"
    					alt="<la:message key="labels.header_brand_name" />" />
    			</la:link>
    		</div>
    		<div class="card">
    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. docs/zh/docs/tutorial/dependencies/classes-as-dependencies.md

    commons = Depends(CommonQueryParams)
    ```
    
    ////
    
    ..就像:
    
    {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *}
    
    但是声明类型是被鼓励的,因为那样你的编辑器就会知道将传递什么作为参数 `commons` ,然后它可以帮助你完成代码,类型检查,等等:
    
    <img src="/img/tutorial/dependencies/image02.png">
    
    ## 快捷方式 { #shortcut }
    
    但是你可以看到,我们在这里有一些代码重复了,编写了`CommonQueryParams`两次:
    
    //// tab | Python 3.10+
    
    ```Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/dependencies/index.md

    So, the interactive docs will have all the information from these dependencies too:
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## Simple usage { #simple-usage }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/profile/index.jsp

    <script src="${fe:url('/css/admin/respond.min.js')}"></script>
    <![endif]-->
    </head>
    <body class="hold-transition login-page">
    	<div class="login-box">
    		<div class="login-logo">
    			<la:link href="/">
    				<img src="${fe:url('/images/logo-top.png')}"
    					alt="<la:message key="labels.header_brand_name" />" />
    			</la:link>
    		</div>
    		<div class="card">
    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  6. docs/ja/docs/advanced/path-operation-advanced-configuration.md

    {* ../../docs_src/path_operation_advanced_configuration/tutorial005_py310.py hl[6] *}
    
    自動APIドキュメントを開くと、その拡張は特定の *path operation* の下部に表示されます。
    
    <img src="/img/tutorial/path-operation-advanced-configuration/image01.png">
    
    そして(APIの `/openapi.json` にある)生成されたOpenAPIを見ると、その拡張も特定の *path operation* の一部として確認できます。
    
    ```JSON hl_lines="22"
    {
        "openapi": "3.1.0",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  7. docs/ja/docs/advanced/security/http-basic-auth.md

        - 送信された `username` と `password` を含みます。
    
    {* ../../docs_src/security/tutorial006_an_py310.py hl[4,8,12] *}
    
    URL を最初に開こうとしたとき(またはドキュメントで「Execute」ボタンをクリックしたとき)、ブラウザはユーザー名とパスワードの入力を求めます:
    
    <img src="/img/tutorial/security/image12.png">
    
    ## ユーザー名の確認 { #check-the-username }
    
    より完全な例です。
    
    依存関係を使ってユーザー名とパスワードが正しいかを確認します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/sql-databases.md

    ```
    
    </div>
    
    然後前往 `/docs` 的 UI,你會看到 FastAPI 使用這些模型來「文件化」API,也會用它們來「序列化」與「驗證」資料。
    
    <div class="screenshot">
    <img src="/img/tutorial/sql-databases/image01.png">
    </div>
    
    ## 用多個模型更新應用 { #update-the-app-with-multiple-models }
    
    現在我們稍微「重構」一下這個應用,以提升「安全性」與「彈性」。
    
    如果你檢查前一版的應用,在 UI 中你會看到,到目前為止它讓用戶端自己決定要建立的 `Hero` 的 `id`。😱
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  9. docs/zh/docs/advanced/openapi-callbacks.md

    ///
    
    ### 查看文档 { #check-the-docs }
    
    现在,启动应用并打开 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。
    
    就能看到文档的*路径操作*已经包含了**回调**的内容以及*外部 API*:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  10. fastapi/openapi/docs.py

            str,
            Doc(
                """
                The URL of the favicon to use. It is normally shown in the browser tab.
                """
            ),
        ] = "https://fastapi.tiangolo.com/img/favicon.png",
        oauth2_redirect_url: Annotated[
            str | None,
            Doc(
                """
                The OAuth2 redirect URL, it is normally automatically handled by FastAPI.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 24 09:28:10 GMT 2026
    - 12.1K bytes
    - Click Count (0)
Back to Top