Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for ZH (0.22 sec)

  1. tests/update_many2many_test.go

    	user := *GetUser("update-many2many", Config{})
    
    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	user.Languages = []Language{{Code: "zh-CN", Name: "Chinese"}, {Code: "en", Name: "English"}}
    	for _, lang := range user.Languages {
    		DB.Create(&lang)
    	}
    	user.Friends = []*User{{Name: "friend-1"}, {Name: "friend-2"}}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Jan 06 07:02:53 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    {!../../../docs_src/dependencies/tutorial010.py!}
    ```
    
    !!! tip
        另一种创建上下文管理器的方法是:
    
        * <a href="https://docs.python.org/zh-cn/3/library/contextlib.html#contextlib.contextmanager" class="external-link" target="_blank">`@contextlib.contextmanager`</a>或者
        * <a href="https://docs.python.org/zh-cn/3/library/contextlib.html#contextlib.asynccontextmanager" class="external-link" target="_blank">`@contextlib.asynccontextmanager`</a>
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess/doc.json

              }
            }
          },
          {
            "lang_zh-cn": {
              "match": "*_zh-cn",
              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

              }
            }
          },
          {
            "lang_zh-cn": {
              "match": "*_zh-cn",
              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

              }
            }
          },
          {
            "lang_zh-cn": {
              "match": "*_zh-cn",
              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/body-updates.md

    # 请求体 - 更新数据
    
    ## 用 `PUT` 更新数据
    
    更新数据请用 <a href="https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/PUT" class="external-link" target="_blank">HTTP `PUT`</a> 操作。
    
    把输入数据转换为以 JSON 格式存储的数据(比如,使用 NoSQL 数据库时),可以使用 `jsonable_encoder`。例如,把 `datetime` 转换为 `str`。
    
    ```Python hl_lines="30-35"
    {!../../../docs_src/body_updates/tutorial001.py!}
    ```
    
    `PUT` 用于接收替换现有数据的数据。
    
    ### 关于更新数据的警告
    
    用 `PUT` 把数据项 `bar` 更新为以下内容时:
    
    ```Python
    {
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * 🌐 Add Traditional Chinese translation for `docs/zh-hant/benchmarks.md`. PR [#11484](https://github.com/tiangolo/fastapi/pull/11484) by [@KNChiu](https://github.com/KNChiu).
    * 🌐 Update Chinese translation for `docs/zh/docs/fastapi-people.md`. PR [#11476](https://github.com/tiangolo/fastapi/pull/11476) by [@billzhong](https://github.com/billzhong).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  8. src/main/resources/suggest_indices/suggest_analyzer.json

          },
          "reading_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "reading_term_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/request-forms.md

    **FastAPI** 要确保从正确的位置读取数据,而不是读取 JSON。
    
    !!! note "技术细节"
    
        表单数据的「媒体类型」编码一般为 `application/x-www-form-urlencoded`。
    
        但包含文件的表单编码为 `multipart/form-data`。文件处理详见下节。
    
        编码和表单字段详见 <a href="https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">MDN</abbr> Web 文档的 <code>POST</code></a>小节。
    
    !!! warning "警告"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "reading_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "reading_term_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
Back to top