Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,956 for json (0.03 seconds)

  1. internal/s3select/json/testdata/4.json

    Harshavardhana <******@****.***> 1622584780 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2021-06-01 21:59
    - 607 bytes
    - Click Count (0)
  2. internal/s3select/json/testdata/6.json

    Harshavardhana <******@****.***> 1622584780 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2021-06-01 21:59
    - 79 bytes
    - Click Count (0)
  3. internal/s3select/json/testdata/2.json

    Harshavardhana <******@****.***> 1622584780 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2021-06-01 21:59
    - 35 bytes
    - Click Count (0)
  4. internal/s3select/json/testdata/3.json

    Harshavardhana <******@****.***> 1622584780 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2021-06-01 21:59
    - 20 bytes
    - Click Count (0)
  5. internal/s3select/json/testdata/7.json

    Harshavardhana <******@****.***> 1622584780 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2021-06-01 21:59
    - 86 bytes
    - Click Count (0)
  6. docs/ko/docs/tutorial/stream-json-lines.md

        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    데이터를 계속 보내는 무한 스트림일 수도 있습니다.
    
    ## JSON Lines { #json-lines }
    
    이런 경우에는 한 줄에 하나의 JSON 객체를 보내는 형식인 "**JSON Lines**"를 사용하는 것이 일반적입니다.
    
    응답의 콘텐츠 타입은 `application/json` 대신 `application/jsonl`이고, 본문은 다음과 같습니다:
    
    ```json
    {"name": "Plumbus", "description": "A multi-purpose household device."}
    {"name": "Portal Gun", "description": "A portal opening device."}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:56
    - 4.8K bytes
    - Click Count (0)
  7. docs/en/docs/advanced/json-base64-bytes.md

    # JSON with Bytes as Base64 { #json-with-bytes-as-base64 }
    
    If your app needs to receive and send JSON data, but you need to include binary data in it, you can encode it as base64.
    
    ## Base64 vs Files { #base64-vs-files }
    
    Consider first if you can use [Request Files](../tutorial/request-files.md) for uploading binary data and [Custom Response - FileResponse](./custom-response.md#fileresponse--fileresponse-) for sending binary data, instead of encoding it in JSON.
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-05 18:13
    - 2.4K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/stream-json-lines.md

        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    它甚至可以是一个无限流,你可以一直持续发送数据。
    
    ## JSON Lines { #json-lines }
    
    在这些场景中,常见的做法是发送 “JSON Lines”,这是一种每行发送一个 JSON 对象的格式。
    
    响应的内容类型是 `application/jsonl`(而不是 `application/json`),响应体类似这样:
    
    ```json
    {"name": "Plumbus", "description": "A multi-purpose household device."}
    {"name": "Portal Gun", "description": "A portal opening device."}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-20 14:29
    - 4.2K bytes
    - Click Count (0)
  9. docs/zh/docs/advanced/json-base64-bytes.md

    # 在 JSON 中使用 Base64 表示字节 { #json-with-bytes-as-base64 }
    
    如果你的应用需要接收和发送 JSON 数据,但其中需要包含二进制数据,可以将其编码为 base64。
    
    ## Base64 与文件 { #base64-vs-files }
    
    请先考虑是否可以使用 [请求文件](../tutorial/request-files.md) 来上传二进制数据,并使用 [自定义响应 - FileResponse](./custom-response.md#fileresponse--fileresponse-) 来发送二进制数据,而不是把它编码进 JSONJSON 只能包含 UTF-8 编码的字符串,因此无法直接包含原始字节。
    
    Base64 可以把二进制数据编码为字符串,但为此会使用比原始二进制更多的字符,因此通常比直接使用文件的效率更低。
    
    仅当你确实需要在 JSON 中包含二进制数据且无法使用文件时,才使用 base64。
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-20 14:29
    - 2.4K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/stream-json-lines.md

        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    它甚至可以是無限串流,你可以一直持續傳送資料。
    
    ## JSON Lines { #json-lines }
    
    在這些情況下,常見做法是傳送「**JSON Lines**」,這是一種每一行各包含一個 JSON 物件的格式。
    
    回應的 content type 會是 `application/jsonl`(而不是 `application/json`),而本體內容會像這樣:
    
    ```json
    {"name": "Plumbus", "description": "A multi-purpose household device."}
    {"name": "Portal Gun", "description": "A portal opening device."}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-20 14:33
    - 4.2K bytes
    - Click Count (0)
Back to Top