Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 19 for Marshalling (0.29 seconds)

  1. docs/de/docs/index.md

    * <dfn title="auch bekannt als: Serialisierung, Parsen, Marshalling">Konvertierung</dfn> von Eingabedaten: Aus dem Netzwerk kommend, zu Python-Daten und -Typen. Lesen von:
        * JSON.
        * Pfad-Parametern.
        * Query-Parametern.
        * Cookies.
        * Headern.
        * Formularen.
        * Dateien.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 23.6K bytes
    - Click Count (1)
  2. docs/ja/docs/index.md

        * 深い入れ子になった JSON オブジェクトでも検証が可能です。
    * 入力データの <dfn title="別名: serialization、parsing、marshalling">変換</dfn>: ネットワークから Python のデータや型へ。以下から読み取ります:
        * JSON。
        * パスパラメータ。
        * クエリパラメータ。
        * Cookie。
        * ヘッダー。
        * フォーム。
        * ファイル。
    * 出力データの <dfn title="別名: serialization、parsing、marshalling">変換</dfn>: Python のデータや型からネットワークデータへ(JSON として)変換します:
        * Python の型(`str`、`int`、`float`、`bool`、`list` など)の変換。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  3. docs/es/docs/index.md

    * <dfn title="también conocido como: serialización, parsing, marshalling">Conversión</dfn> de datos de entrada: de la red a los datos y tipos de Python. Leyendo desde:
        * JSON.
        * Parámetros de path.
        * Parámetros de query.
        * Cookies.
        * Headers.
        * Formularios.
        * Archivos.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  4. docs/pt/docs/index.md

    * <dfn title="também conhecido como: serialização, parsing, marshalling">Conversão</dfn> de dados de entrada: vindo da rede para dados e tipos Python. Consegue ler:
        * JSON.
        * Parâmetros de path.
        * Parâmetros query.
        * Cookies.
        * Cabeçalhos.
        * Formulários.
        * Arquivos.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  5. docs/tr/docs/index.md

        * JSON.
        * Path parameter'lar.
        * Query parameter'lar.
        * Cookie'ler.
        * Header'lar.
        * Form'lar.
        * File'lar.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  6. docs/fr/docs/index.md

        * JSON.
        * Paramètres de chemin.
        * Paramètres de requête.
        * Cookies.
        * En-têtes.
        * Formulaires.
        * Fichiers.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  7. doc/godebug.md

    signatures on certificates that use SHA-1 based signature algorithms.
    
    Go 1.24 changes the default value of the [`x509usepolicies`
    setting.](/pkg/crypto/x509/#CreateCertificate) from `0` to `1`. When marshalling
    certificates, policies are now taken from the
    [`Certificate.Policies`](/pkg/crypto/x509/#Certificate.Policies) field rather
    than the
    [`Certificate.PolicyIdentifiers`](/pkg/crypto/x509/#Certificate.PolicyIdentifiers)
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 15:49:10 GMT 2026
    - 26K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/alternatives.md

    有幾個 Flask 的 REST 框架,但在投入時間調查後,我發現許多已停止維護或被棄置,且存在一些關鍵問題使之不適用。
    
    ### [Marshmallow](https://marshmallow.readthedocs.io/en/stable/) { #marshmallow }
    
    API 系統需要的主要功能之一是資料「<dfn title="也稱為 marshalling、轉換">序列化</dfn>」,也就是把程式中的資料(Python)轉成能透過網路傳輸的形式。例如,將含有資料庫資料的物件轉成 JSON 物件、把 `datetime` 物件轉成字串等等。
    
    API 需要的另一個重要功能是資料驗證,確保資料在特定條件下有效。例如,某個欄位必須是 `int`,而不是隨便的字串。這對於輸入資料特別有用。
    
    沒有資料驗證系統的話,你就得在程式碼中手動逐一檢查。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20K bytes
    - Click Count (0)
  9. docs/de/docs/tutorial/path-params.md

    /// check | Testen
    
    Dadurch erhalten Sie Editor-Unterstützung innerhalb Ihrer Funktion, mit Fehlerprüfungen, Codevervollständigung, usw.
    
    ///
    
    ## Daten-<dfn title="auch bekannt als: Serialisierung, Parsen, Marshalling">Konversion</dfn> { #data-conversion }
    
    Wenn Sie dieses Beispiel ausführen und Ihren Browser unter [http://127.0.0.1:8000/items/3](http://127.0.0.1:8000/items/3) öffnen, sehen Sie als Response:
    
    ```JSON
    {"item_id":3}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/path-params.md

    /// check | Verifique
    Isso fornecerá suporte do editor dentro da sua função, com verificações de erros, preenchimento automático, etc.
    ///
    
    ## Dados <dfn title="também conhecido como: serialização, parsing, marshalling">conversão</dfn> { #data-conversion }
    
    Se você executar este exemplo e abrir seu navegador em [http://127.0.0.1:8000/items/3](http://127.0.0.1:8000/items/3), você verá uma resposta:
    
    ```JSON
    {"item_id":3}
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 9.5K bytes
    - Click Count (0)
Back to Top