Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for upsert (0.54 sec)

  1. docs/ko/docs/tutorial/response-model.md

    그러나 실제로 저장되지 않았을 경우 결과에서 값을 생략하고 싶을 수 있습니다.
    
    예를 들어, NoSQL 데이터베이스에 많은 선택적 속성이 있는 모델이 있지만, 기본값으로 가득 찬 매우 긴 JSON 응답을 보내고 싶지 않습니다.
    
    ### `response_model_exclude_unset` 매개변수 사용
    
    *경로 작동 데코레이터* 매개변수를 `response_model_exclude_unset=True`로 설정 할 수 있습니다:
    
    ```Python hl_lines="24"
    {!../../../docs_src/response_model/tutorial004.py!}
    ```
    
    이러한 기본값은 응답에 포함되지 않고 실제로 설정된 값만 포함됩니다.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/response-model.md

    ### Используйте параметр `response_model_exclude_unset`
    
    Установите для *декоратора операции пути* параметр `response_model_exclude_unset=True`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="22"
        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 30.5K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/response-model.md

    ### Den `response_model_exclude_unset`-Parameter verwenden
    
    Sie können den *Pfadoperation-Dekorator*-Parameter `response_model_exclude_unset=True` setzen:
    
    === "Python 3.10+"
    
        ```Python hl_lines="22"
        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:26:58 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/response-model.md

    * `tags: List[str] = []` 具有一个空列表作为默认值: `[]`.
    
    但如果它们并没有存储实际的值,你可能想从结果中忽略它们的默认值。
    
    举个例子,当你在 NoSQL 数据库中保存了具有许多可选属性的模型,但你又不想发送充满默认值的很长的 JSON 响应。
    
    ### 使用 `response_model_exclude_unset` 参数
    
    你可以设置*路径操作装饰器*的 `response_model_exclude_unset=True` 参数:
    
    ```Python hl_lines="24"
    {!../../../docs_src/response_model/tutorial004.py!}
    ```
    
    然后响应中将不会包含那些默认值,而是仅有实际设置的值。
    
    因此,如果你向*路径操作*发送 ID 为 `foo` 的商品的请求,则响应(不包括默认值)将为:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  5. docs/ja/docs/tutorial/response-model.md

    しかし、実際に保存されていない場合には結果からそれらを省略した方が良いかもしれません。
    
    例えば、NoSQLデータベースに多くのオプション属性を持つモデルがあるが、デフォルト値でいっぱいの非常に長いJSONレスポンスを送信したくない場合です。
    
    ### `response_model_exclude_unset`パラメータの使用
    
    *path operation デコレータ*に`response_model_exclude_unset=True`パラメータを設定することができます:
    
    ```Python hl_lines="24"
    {!../../../docs_src/response_model/tutorial004.py!}
    ```
    
    そして、これらのデフォルト値はレスポンスに含まれず、実際に設定された値のみが含まれます。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/response-model.md

        ```
    
    Now, whenever a browser is creating a user with a password, the API will return the same password in the response.
    
    In this case, it might not be a problem, because it's the same user sending the password.
    
    But if we use the same model for another *path operation*, we could be sending our user's passwords to every client.
    
    !!! danger
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17.9K bytes
    - Viewed (0)
Back to top