Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 23 of 23 for ORJSONResponse (0.09 seconds)

  1. docs/zh-hant/docs/index.md

    * [`pydantic-extra-types`](https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/) - 與 Pydantic 一起使用的額外型別。
    
    FastAPI 的額外可選依賴:
    
    * [`orjson`](https://github.com/ijl/orjson) - 若要使用 `ORJSONResponse` 必須安裝。
    * [`ujson`](https://github.com/esnme/ultrajson) - 若要使用 `UJSONResponse` 必須安裝。
    
    ## 授權 { #license }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20.8K bytes
    - Click Count (0)
  2. fastapi/applications.py

                    **Example**
    
                    ```python
                    from fastapi import FastAPI
                    from fastapi.responses import ORJSONResponse
    
                    app = FastAPI(default_response_class=ORJSONResponse)
                    ```
                    """
                ),
            ] = Default(JSONResponse),
            redirect_slashes: Annotated[
                bool,
                Doc(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  3. docs/en/docs/release-notes.md

    ## 0.52.0 (2020-03-01)
    
    * Add new high-performance JSON response class using `orjson`. New docs: [Custom Response - HTML, Stream, File, others: `ORJSONResponse`](https://fastapi.tiangolo.com/advanced/custom-response/#use-orjsonresponse). PR [#1065](https://github.com/tiangolo/fastapi/pull/1065).
    
    ## 0.51.0 (2020-03-01)
    
    * Re-export utils from Starlette:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top